Vue之文件加載執行全流程

Vue項目結構

使用webpack構建的Vue項目的結構如下所示:

主要配置文件

1、package.json

package.json是一個json文件,這是vue項目的表述文件。

package.json定義瞭項目所需要的各種模塊,以及項目的配置信息(名稱、版本、許可證等),npm install命令也是根據這個配置文件自動下載項目所需的模塊。

{
  "name": "myvue1",
  "version": "1.0.0",
  "description": "A Vue.js project",
  "author": "LearningJun <[email protected]>",
  "private": true,
  "scripts": {
    "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
    "start": "npm run dev",
    "unit": "jest --config test/unit/jest.conf.js --coverage",
    "e2e": "node test/e2e/runner.js",
    "test": "npm run unit && npm run e2e",
    "build": "node build/build.js"
  },
  "dependencies": {
    "axios": "^0.18.0",
    "echarts": "4.6.0",
    "echarts-stat": "^1.2.0",
    "element-ui": "^2.13.2",
    "js-cookie": "^2.2.1",
    "moment": "^2.24.0",
    "qs": "^6.7.0",
    "vue": "^2.5.2",
    "vue-amap": "^0.5.9",
    "vue-axios": "^2.1.4",
    "vue-baidu-map": "^0.21.22",
    "vue-cookies": "^1.5.6",
    "vue-echarts": "^5.0.0-beta.0",
    "vue-puzzle-vcode": "^1.0.7",
    "vue-router": "^3.0.1",
    "vue-video-player": "^5.0.2",
    "vue2-verify": "^1.1.5",
    "vuex": "^3.1.0",
    "vxe-table": "^2.9.22",
    "xe-utils": "^2.7.12"
  },
  "devDependencies": {
    "autoprefixer": "^7.1.2",
    "babel-core": "^6.22.1",
    "babel-helper-vue-jsx-merge-props": "^2.0.3",
    "babel-loader": "^7.1.1",
    "babel-plugin-syntax-jsx": "^6.18.0",
    "babel-plugin-transform-runtime": "^6.22.0",
    "babel-plugin-transform-vue-jsx": "^3.5.0",
    "babel-preset-env": "^1.3.2",
    "babel-preset-stage-2": "^6.22.0",
    "chalk": "^2.0.1",
    "copy-webpack-plugin": "^4.0.1",
    "css-loader": "^0.28.0",
    "extract-text-webpack-plugin": "^3.0.0",
    "file-loader": "^1.1.4",
    "friendly-errors-webpack-plugin": "^1.6.1",
    "html-webpack-plugin": "^2.30.1",
    "node-notifier": "^5.1.2",
    "node-sass": "^4.12.0",
    "optimize-css-assets-webpack-plugin": "^3.2.0",
    "ora": "^1.2.0",
    "portfinder": "^1.0.13",
    "postcss-import": "^11.0.0",
    "postcss-loader": "^2.0.8",
    "postcss-url": "^7.2.1",
    "rimraf": "^2.6.0",
    "sass-loader": "^7.3.1",
    "semver": "^5.3.0",
    "shelljs": "^0.7.6",
    "style-loader": "^1.0.0",
    "uglifyjs-webpack-plugin": "^1.1.1",
    "url-loader": "^0.5.8",
    "vue-loader": "^13.3.0",
    "vue-style-loader": "^3.0.1",
    "vue-template-compiler": "^2.5.2",
    "webpack": "^3.6.0",
    "webpack-bundle-analyzer": "^2.9.0",
    "webpack-dev-server": "^2.9.1",
    "webpack-merge": "^4.1.0"
  },
  "engines": {
    "node": ">= 6.0.0",
    "npm": ">= 3.0.0"
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 8"
  ]
}

  • name:包名
  • version:包的版本號
  • main:入口文件,一般都是 index.js
  • scripts:支持的腳本,默認是一個空的 test
  • keywords:關鍵字,有助於在人們使用 npm search 搜索時發現你的項目
  • description:包的描述
  • author: 包的作者
  • repository:包代碼的repo信息,包括type和URL,type可以是git或者svn,url則是包的repo地址。
  • license:默認是 [MIT],項目許可證,讓使用者知道是如何被允許使用此項目。
  • dependencies:生產環境依賴包列表
  • devDependencies:開發環境、測試環境依賴包列表
  • engines: 聲明項目需要的node或npm版本范圍

(1)添加、更新依賴

①添加依賴

可以手動添加或者使用命令npm install <package_name> –save(將這個包名及對應的版本添加到 package.json的 dependencies)或npm install
<package_name> –save-dev(將這個包名及對應的版本添加到 package.json的 devDependencies)

②更新依賴

查詢依賴的包是否有新版本可以使用 npm outdated 命令。如果發現有的包有新版本,就可以使用npm update更新它,或者直接 npm update 更新所有。

③卸載本地依賴

npm uninstall < package-name>

(2)腳本執行

npm 可以直接運行運行package.json 中 scripts 指定的腳本。 npm run 是 npm run-script的縮寫。命令行輸入 npm run dev 或者 npm run-script dev 就會執行 'dev’後面的內容 。
例如:當我們執行npm run dev時,首選執行的是webpack.dev.conf.js;當我們執行npm run build時,首選執行的是build.js

2、config/index.js

const path = require('path')

module.exports = {
//開發時使用的配置
  dev: {
    //輸出的子文件夾路徑
    assetsSubDirectory: 'static',
    //發佈路徑
    assetsPublicPath: '/',
    //配置代理表
    proxyTable: {},
    // Various Dev Server settings
    host: 'localhost', // can be overwritten by process.env.HOST
    //端口
    port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
    //是否自動打開瀏覽器
    autoOpenBrowser: false,
    errorOverlay: true,
    notifyOnErrors: true,
    poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
    /**
     * Source Maps
     */
    // https://webpack.js.org/configuration/devtool/#development
    devtool: 'cheap-module-eval-source-map',
    // If you have problems debugging vue-files in devtools,
    // set this to false - it *may* help
    // https://vue-loader.vuejs.org/en/options.html#cachebusting
    cacheBusting: true,
    cssSourceMap: true
  },

//打包時使用的配置
  build: {
    // Template for index.html
    // 輸入的index.html的路徑
    index: path.resolve(__dirname, '../dist/index.html'),
    // 輸出的目標文件夾路徑
    assetsRoot: path.resolve(__dirname, '../dist'),
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    /**
     * Source Maps
     */
     //是否使用SourceMap
    productionSourceMap: true,
    // https://webpack.js.org/configuration/devtool/#production
    devtool: '#source-map',
    // Gzip off by default as many popular static hosts such as
    // Surge or Netlify already gzip all static assets for you.
    // Before setting to `true`, make sure to:
    // npm install --save-dev compression-webpack-plugin
    // 是否開啟Gzip
    productionGzip: false,
    //Gzip的壓縮文件類型
    productionGzipExtensions: ['js', 'css'],
    // Run the build command with an extra argument to
    // View the bundle analyzer report after build finishes:
    // `npm run build --report`
    // Set to `true` or `false` to always turn it on or off
    bundleAnalyzerReport: process.env.npm_config_report
  }
}

3、build/webpack.base.conf.js

  • 配置編譯入口和輸出路徑
  • 模塊resolve的規則
  • 配置不同類型模塊的處理規則
'use strict'
const path = require('path')
const utils = require('./utils')
//引入相關配置
const config = require('../config')
const vueLoaderConfig = require('./vue-loader.conf')

//絕對路徑
function resolve (dir) {
  return path.join(__dirname, '..', dir)
}

module.exports = {
  context: path.resolve(__dirname, '../'),
  //webpack的入口文件
  entry: {
    app: './src/main.js'
  },
  output: {
    //webpack輸出文件的路徑
    path: config.build.assetsRoot,
    //輸出的文件命名格式
    filename: '[name].js',
    // webpack編譯輸出的發佈路徑
    publicPath: process.env.NODE_ENV === 'production'
      ? config.build.assetsPublicPath
      : config.dev.assetsPublicPath
  },
  resolve: {
    extensions: ['.js', '.vue', '.json'],
    alias: {
      'vue$': 'vue/dist/vue.esm.js',
      '@': resolve('src'),
    }
  },
  //配置不同類型模塊的處理規則
  module: {
    rules: [
      //所有的.vue文件使用vue-loader
      {
        test: /\.vue$/,
        loader: 'vue-loader',
        options: vueLoaderConfig
      },      
      //src和test下的.js文件使用babel-loader
      {
        test: /\.js$/,
        loader: 'babel-loader',
        include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
      },
      //所有的圖片文件使用url-loader
      {
        test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('img/[name].[hash:7].[ext]')
        }
      },
      //所有的音頻文件使用url-loader
      {
        test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('media/[name].[hash:7].[ext]')
        }
      },
      //所有的字體文件使用url-loader
      {
        test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
        }
      },
      { //從這一段上面是默認的!不用改!下面是沒有的需要你手動添加,相當於是編譯識別sass!
        test: /\.scss$/,
        loaders: ["style", "css", "sass"]
      }
    ]
  },
  node: {
    // prevent webpack from injecting useless setImmediate polyfill because Vue
    // source contains it (although only uses it if it's native).
    setImmediate: false,
    // prevent webpack from injecting mocks to Node native modules
    // that does not make sense for the client
    dgram: 'empty',
    fs: 'empty',
    net: 'empty',
    tls: 'empty',
    child_process: 'empty'
  }
}

Vue項目啟動代碼執行流程分析

一般一個初步的Vue項目創建好之後都會有這三個文件:index.html 、main.js 和App.js

1、index.html

Vue是單頁面形式開發,index.html文件在其中起著特別重要的作用。所有組件(後綴名為.vue都被視為組件)都會通過此文件進行渲染加載。

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>y</title>
  </head>
  <body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>

在body體中隻有一個div標簽,其id為app,這個id將會連接到src/main.js內容

2、main.js

相當於一個C/Java中的入口函數,控制著初次啟動Vue項目要加載的組件。

import Vue from 'vue'
import App from './App'
import router from './router'
import lhj from './components/lhj'
Vue.config.productionTip = false
import axios from "axios";
import VueAxios from "vue-axios";
Vue.use(VueAxios,axios)

/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  components: { App },
  template: '<App/>',
  watch:{}
})

在main.js中,新建瞭一個vue實例,並使用el:#app鏈接到index.html中的app,並使用template引入組件和路由相關的內容,也就是說通過main.js我們關聯到App.vue組件。

(1)import A from ‘B’

這類語句相當於引入B(這一般是路徑)然後給它起個名字叫做A;

(2)Vue.use(C)

這個意思是全局方法定義 C。也就是說,定義以後你可以在這個Vue項目的任意地方使用該組件。

(3)el: ‘#app’

這個和index.html中的相掛鉤。

模板將會替換掛載的元素,掛載元素的內容都將被忽略。

也就是說:template: ‘< App/>’ 表示用< app>< /app>替換index.html裡面的< div id=“app”>,然後index.html文件被初步解析為這種形式

<body>
	<div id="myapp">
    	<app></app>
	</div>
</body>

(4)watch : 用來監聽路由的變化,可以用來定義頁面切換時過渡效果。

3、App.vue

<template>
  <div id="app">
    <img src="./assets/logo.png">
    <router-view/>
  </div>
</template>
 
<script>
export default {
  name: 'App'
}
</script>
 
<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

標準的App.vue模板的形式,包含瞭<template></template><script></script><style></style>三部分。

(1)export中的name屬性,相當於給這個組件定義一個名字,便於識別和使用。

(2)< template>標簽下,除瞭< img>標簽外,還有< router-view>標簽,< router-view>標簽將會把路由相關內容渲染在這個地方。路由的內容定義在src/router/index.js文件中。

4、src/router/index.js

import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'

Vue.use(Router)

export default new Router({
  routes: [
    {
      path: '/',
      name: 'HelloWorld',
      component: HelloWorld
    }
  ]
})

在index.js的代碼中,建立瞭路由相關的內容,也就會渲染到app.vue下面的< router-view>中。

(1)引入組件的代碼

引入的時候註意好格式、路徑就行。

(2)routes定義

  • path:頁面間路由跳轉的路徑;
  • name:該路由的名稱;
  • component:組件名,要和你引入組件時定義的名字保持一致。

Vue加載時文件的執行順序

1、執行index.html文件

2、執行main.js文件

3、main.js掛載瞭app.vue文件,用app.vue的templete替換index.html中的

4、main.js中註入瞭路由文件,將對應的組件渲染到router-view中 5、router-view中加載Layout文件

6、Layout 加載Navbar, Sidebar, AppMain

Vue內部頁面的執行順序

Vue 推薦在絕大多數情況下使用 template 來創建你的 HTML。但是模板畢竟是模板,不是真實的dom節點。從模板到真實dom節點還需要經過一些步驟:

1、把模板編譯為render函數

2、實例進行掛載, 根據根節點render函數的調用,遞歸的生成虛擬dom

3、對比虛擬dom,渲染到真實dom

4、組件內部data發生變化,組件和子組件引用data作為props重新調用render函數,生成虛擬dom, 返回到步驟3

總結

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: