日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > vue >内容正文

vue

手把手带你撸一遍vue-loader源码

發布時間:2023/12/29 vue 66 豆豆
生活随笔 收集整理的這篇文章主要介紹了 手把手带你撸一遍vue-loader源码 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

前言

前面寫過兩篇webpack實戰的文章:

  • webpack實戰之(手把手教你從0開始搭建一個vue項目)
  • 手把手教你從0開始搭建一個vue項目(完結)

強烈建議小伙伴們去看一下前面幾個章節的內容,

這一節我們研究一下vue-loader。

介紹

Vue Loader 是什么?

Vue Loader 是一個 webpack 的 loader,它允許你以一種名為單文件組件 (SFCs)的格式撰寫 Vue 組件:

<template><div class="example">{{ msg }}</div> </template><script> export default {data () {return {msg: 'Hello world!'}} } </script><style> .example {color: red; } </style>

Vue Loader 還提供了很多酷炫的特性:

  • 允許為 Vue 組件的每個部分使用其它的 webpack loader,例如在 `` 的部分使用 Sass 和在 ` 的部分使用 Pug;
  • 允許在一個 .vue 文件中使用自定義塊,并對其運用自定義的 loader 鏈;
  • 使用 webpack loader 將 `` 和 ` 中引用的資源當作模塊依賴來處理;
  • 為每個組件模擬出 scoped CSS;
  • 在開發過程中使用熱重載來保持狀態。

簡而言之,webpack 和 Vue Loader 的結合為你提供了一個現代、靈活且極其強大的前端工作流,來幫助撰寫 Vue.js 應用。


以上內容都是vue-loader官網的內容,基礎用法大家可以自己去看vue-loader的官網,我就不在這里詳細介紹了。

開始

我們還是用之前章節的webpack-vue-demo項目做測試demo,大家可以直接clone。

我們首先看一下demo項目的入口文件src/main.ts:

import Vue from "vue"; // import App from "./app.vue"; import App from "./app.vue";new Vue({el: "#app",render: h => h(App) });

可以看到,直接引用了一個app.vue組件,

src/app.vue:

<template><div class="app-container">{{ msg }}</div> </template><script lang="ts"> import { Vue, Component } from "vue-property-decorator";@Component export default class App extends Vue {msg = "hello world";user = {name: "yasin"};created(): void {// const name = this.user?.name;// console.log("name");} } </script><style scoped lang="scss"> .app-container {color: red; } </style>

代碼很簡單,就是一個普通的vue組件,然后輸出一個“hello world”,大家可以直接在項目根目錄執行"npm run dev"命令來運行項目。

ok,然后看一下webpack的配置文件webpack.config.js:

const path = require("path"); const config = new (require("webpack-chain"))(); const isDev = !!process.env.WEBPACK_DEV_SERVER; config.context(path.resolve(__dirname, ".")) //webpack上下文目錄為項目根目錄.entry("app") //入口文件名稱為app.add("./src/main.ts") //入口文件為./src/main.ts.end().output.path(path.join(__dirname,"./dist")) //webpack輸出的目錄為根目錄的dist目錄.filename("[name].[hash:8].js").end().resolve.extensions.add(".js").add(".jsx").add(".ts").add(".tsx").add(".vue") //配置以.js等結尾的文件當模塊使用的時候都可以省略后綴.end().end().module.rule('js').test(/\.m?jsx?$/) //對mjs、mjsx、js、jsx文件進行babel配置.exclude.add(filepath => {// Don't transpile node_modulesreturn /node_modules/.test(filepath)}).end().use("babel-loader").loader("babel-loader").end().end().rule("type-script").test(/\.tsx?$/) //loader加載的條件是ts或tsx后綴的文件.use("babel-loader").loader("babel-loader").end().use("ts-loader").loader("ts-loader").options({ //ts-loader相關配置transpileOnly: true, // disable type checker - we will use it in fork pluginappendTsSuffixTo: ['\\.vue$']}).end().end().rule("vue").test(/\.vue$/)// 匹配.vue文件.use("vue-loader").loader("vue-loader").end().end().rule("sass").test( /\.(sass|scss)$/)//sass和scss文件.use("extract-loader")//提取css樣式到單獨css文件.loader(require('mini-css-extract-plugin').loader).options({hmr: isDev //開發環境開啟熱載}).end().use("css-loader")//加載css模塊.loader("css-loader").end().use("postcss-loader")//處理css樣式.loader("postcss-loader").options( {config: {path: path.resolve(__dirname, "./postcss.config.js")}}).end().use("sass-loader")//sass語法轉css語法.loader("sass-loader").end().end().rule('eslint')//添加eslint-loader.exclude.add(/node_modules/)//校驗的文件除node_modules以外.end().test(/\.(vue|(j|t)sx?)$/)//加載.vue、.js、.jsx、.ts、.tsx文件.use('eslint-loader').loader(require.resolve('eslint-loader')).options({emitWarning: true, //把eslint報錯當成webpack警告emitError: !isDev, //把eslint報錯當成webapck的錯誤}).end().end().end().plugin("vue-loader-plugin")//vue-loader必須要添加vue-loader-plugin.use(require("vue-loader").VueLoaderPlugin,[]).end().plugin("html")// 添加html-webpack-plugin插件.use(require("html-webpack-plugin"),[{template: path.resolve(__dirname,"./public/index.html"), //指定模版文件chunks: ["runtime", "chunk-vendors", "chunk-common", "app"], //指定需要加載的chunksinject: "body" //指定script腳本注入的位置為body}]).end().plugin("extract-css")//提取css樣式到單獨css文件.use(require('mini-css-extract-plugin'), [{filename: "css/[name].css",chunkFilename: "css/[name].css"}]).end().plugin('fork-ts-checker') //配置fork-ts-checker.use(require('fork-ts-checker-webpack-plugin'), [{eslint: {files: './src/**/*.{ts,tsx,js,jsx,vue}' // required - same as command `eslint ./src/**/*.{ts,tsx,js,jsx} --ext .ts,.tsx,.js,.jsx`},typescript: {extensions: {vue: {enabled: true,compiler: "vue-template-compiler"},}}}]).end().devServer.host("0.0.0.0") //為了讓外部服務訪問.port(8090) //當前端口號.hot(true) //熱載.open(true) //開啟頁面.overlay({warnings: false,errors: true}) //webpack錯誤和警告信息顯示到頁面 config.when(!isDev,()=>{config.optimization.minimize(true).minimizer("terser").use(require("terser-webpack-plugin"),[{extractComments: false, //去除注釋terserOptions:{output: {comments: false //去除注釋}}}]); },()=>{config.devtool("eval-cheap-module-source-map"); }); config.optimization.splitChunks({cacheGroups: {vendors: { //分離入口文件引用node_modules的module(vue、@babel/xxx)name: `chunk-vendors`,test: /[\\/]node_modules[\\/]/,priority: -10,chunks: 'initial'},common: { //分離入口文件引用次數>=2的modulename: `chunk-common`,minChunks: 2,priority: -20,chunks: 'initial',reuseExistingChunk: true}}}).runtimeChunk("single"); //分離webpack的一些幫助函數,比如webpackJSONP等等module.exports = config.toConfig();

每一個配置項前面章節都有詳細介紹的,我就不一一解析了,我們繼續往下。

SFC

我們直接打開src/app.vue文件:

<template><div class="app-container">{{ msg }}</div> </template><script lang="ts"> import { Vue, Component } from "vue-property-decorator";@Component export default class App extends Vue {msg = "hello world";user = {name: "yasin"};created(): void {// const name = this.user?.name;// console.log("name");} } </script><style scoped lang="scss"> .app-container {color: red; } </style>

ok! 那么webpack是怎么加載我們的“.vue”結尾的文件呢?

因為我們在webpack.config.js中配置了loader,也就是說是我們的loader去加載的".vue"文件,那么我們項目中的".vue"文件到底被哪些loader加載了呢?

我們直接利用IDE斷點看看,我們直接定位到webpack的“NormalModule”,然后當webpack加載到app.vue模塊的時候,

node_modules/webpack/lib/NormalModule.js:

ok! 可以看到,當webpack在加載app.vue模塊的時候,webpack使用的loader有(loader執行順序為從下往上):

  • vue-loader
  • eslint-loader
  • 我直接知道vue-loader的源碼,我這里的版本是“vue-loader@15.9.3”,

    node_modules/vue-loader/lib/index.js:

    const path = require('path') const hash = require('hash-sum') const qs = require('querystring') const plugin = require('./plugin') const selectBlock = require('./select') const loaderUtils = require('loader-utils') const { attrsToQuery } = require('./codegen/utils') const { parse } = require('@vue/component-compiler-utils') const genStylesCode = require('./codegen/styleInjection') const { genHotReloadCode } = require('./codegen/hotReload') const genCustomBlocksCode = require('./codegen/customBlocks') const componentNormalizerPath = require.resolve('./runtime/componentNormalizer') const { NS } = require('./plugin')let errorEmitted = falsefunction loadTemplateCompiler (loaderContext) {try {return require('vue-template-compiler')} catch (e) {if (/version mismatch/.test(e.toString())) {loaderContext.emitError(e)} else {loaderContext.emitError(new Error(`[vue-loader] vue-template-compiler must be installed as a peer dependency, ` +`or a compatible compiler implementation must be passed via options.`))}} }module.exports = function (source) {const loaderContext = thisif (!errorEmitted && !loaderContext['thread-loader'] && !loaderContext[NS]) {loaderContext.emitError(new Error(`vue-loader was used without the corresponding plugin. ` +`Make sure to include VueLoaderPlugin in your webpack config.`))errorEmitted = true}const stringifyRequest = r => loaderUtils.stringifyRequest(loaderContext, r)const {target,request,minimize,sourceMap,rootContext,resourcePath,resourceQuery} = loaderContextconst rawQuery = resourceQuery.slice(1)const inheritQuery = `&${rawQuery}`const incomingQuery = qs.parse(rawQuery)const options = loaderUtils.getOptions(loaderContext) || {}const isServer = target === 'node'const isShadow = !!options.shadowModeconst isProduction = options.productionMode || minimize || process.env.NODE_ENV === 'production'const filename = path.basename(resourcePath)const context = rootContext || process.cwd()const sourceRoot = path.dirname(path.relative(context, resourcePath))const descriptor = parse({source,compiler: options.compiler || loadTemplateCompiler(loaderContext),filename,sourceRoot,needMap: sourceMap})// if the query has a type field, this is a language block request// e.g. foo.vue?type=template&id=xxxxx// and we will return earlyif (incomingQuery.type) {return selectBlock(descriptor,loaderContext,incomingQuery,!!options.appendExtension)}// module id for scoped CSS & hot-reloadconst rawShortFilePath = path.relative(context, resourcePath).replace(/^(\.\.[\/\\])+/, '')const shortFilePath = rawShortFilePath.replace(/\\/g, '/') + resourceQueryconst id = hash(isProduction? (shortFilePath + '\n' + source): shortFilePath)// feature informationconst hasScoped = descriptor.styles.some(s => s.scoped)const hasFunctional = descriptor.template && descriptor.template.attrs.functionalconst needsHotReload = (!isServer &&!isProduction &&(descriptor.script || descriptor.template) &&options.hotReload !== false)// templatelet templateImport = `var render, staticRenderFns`let templateRequestif (descriptor.template) {const src = descriptor.template.src || resourcePathconst idQuery = `&id=${id}`const scopedQuery = hasScoped ? `&scoped=true` : ``const attrsQuery = attrsToQuery(descriptor.template.attrs)const query = `?vue&type=template${idQuery}${scopedQuery}${attrsQuery}${inheritQuery}`const request = templateRequest = stringifyRequest(src + query)templateImport = `import { render, staticRenderFns } from ${request}`}// scriptlet scriptImport = `var script = {}`if (descriptor.script) {const src = descriptor.script.src || resourcePathconst attrsQuery = attrsToQuery(descriptor.script.attrs, 'js')const query = `?vue&type=script${attrsQuery}${inheritQuery}`const request = stringifyRequest(src + query)scriptImport = (`import script from ${request}\n` +`export * from ${request}` // support named exports)}// styleslet stylesCode = ``if (descriptor.styles.length) {stylesCode = genStylesCode(loaderContext,descriptor.styles,id,resourcePath,stringifyRequest,needsHotReload,isServer || isShadow // needs explicit injection?)}let code = ` ${templateImport} ${scriptImport} ${stylesCode}/* normalize component */ import normalizer from ${stringifyRequest(`!${componentNormalizerPath}`)} var component = normalizer(script,render,staticRenderFns,${hasFunctional ? `true` : `false`},${/injectStyles/.test(stylesCode) ? `injectStyles` : `null`},${hasScoped ? JSON.stringify(id) : `null`},${isServer ? JSON.stringify(hash(request)) : `null`}${isShadow ? `,true` : ``} )`.trim() + `\n`if (descriptor.customBlocks && descriptor.customBlocks.length) {code += genCustomBlocksCode(descriptor.customBlocks,resourcePath,resourceQuery,stringifyRequest)}if (needsHotReload) {code += `\n` + genHotReloadCode(id, hasFunctional, templateRequest)}// Expose filename. This is used by the devtools and Vue runtime warnings.if (!isProduction) {// Expose the file's full path in development, so that it can be opened// from the devtools.code += `\ncomponent.options.__file = ${JSON.stringify(rawShortFilePath.replace(/\\/g, '/'))}`} else if (options.exposeFilename) {// Libraries can opt-in to expose their components' filenames in production builds.// For security reasons, only expose the file's basename in production.code += `\ncomponent.options.__file = ${JSON.stringify(filename)}`}code += `\nexport default component.exports`return code }module.exports.VueLoaderPlugin = plugin

    代碼有點多,不過不要慌,我們一步一步來,還記得我們之前實戰的配置vue-loader的時候,如果不配置VueLoaderPlugin的話,webpack就會直接報錯?ok,那我們就看一下VueLoaderPlugin到底干了什么,

    node_modules/vue-loader/lib/plugin.js:

    const webpack = require('webpack') let VueLoaderPlugin = nullif (webpack.version && webpack.version[0] > 4) {// webpack5 and upperVueLoaderPlugin = require('./plugin-webpack5') } else {// webpack4 and lowerVueLoaderPlugin = require('./plugin-webpack4') }module.exports = VueLoaderPlugin

    我們這里用的webpack版本是"4.44.0",所以我們直接就看“plugin-webpack4”了(其實這里的5.0區別也就是rule的獲取不一樣罷了,因為webpack5.0添加了depend參數等等),

    node_modules/vue-loader/lib/plugin-webpack4.js:

    const qs = require('querystring') const RuleSet = require('webpack/lib/RuleSet')const id = 'vue-loader-plugin' const NS = 'vue-loader'class VueLoaderPlugin {apply (compiler) {// add NS marker so that the loader can detect and report missing pluginif (compiler.hooks) {// webpack 4compiler.hooks.compilation.tap(id, compilation => {const normalModuleLoader = compilation.hooks.normalModuleLoadernormalModuleLoader.tap(id, loaderContext => {loaderContext[NS] = true})})} else {// webpack < 4compiler.plugin('compilation', compilation => {compilation.plugin('normal-module-loader', loaderContext => {loaderContext[NS] = true})})}// use webpack's RuleSet utility to normalize user rulesconst rawRules = compiler.options.module.rulesconst { rules } = new RuleSet(rawRules)// find the rule that applies to vue fileslet vueRuleIndex = rawRules.findIndex(createMatcher(`foo.vue`))if (vueRuleIndex < 0) {vueRuleIndex = rawRules.findIndex(createMatcher(`foo.vue.html`))}const vueRule = rules[vueRuleIndex]if (!vueRule) {throw new Error(`[VueLoaderPlugin Error] No matching rule for .vue files found.\n` +`Make sure there is at least one root-level rule that matches .vue or .vue.html files.`)}if (vueRule.oneOf) {throw new Error(`[VueLoaderPlugin Error] vue-loader 15 currently does not support vue rules with oneOf.`)}// get the normlized "use" for vue filesconst vueUse = vueRule.use// get vue-loader optionsconst vueLoaderUseIndex = vueUse.findIndex(u => {return /^vue-loader|(\/|\\|@)vue-loader/.test(u.loader)})if (vueLoaderUseIndex < 0) {throw new Error(`[VueLoaderPlugin Error] No matching use for vue-loader is found.\n` +`Make sure the rule matching .vue files include vue-loader in its use.`)}// make sure vue-loader options has a known ident so that we can share// options by reference in the template-loader by using a ref query like// template-loader??vue-loader-optionsconst vueLoaderUse = vueUse[vueLoaderUseIndex]vueLoaderUse.ident = 'vue-loader-options'vueLoaderUse.options = vueLoaderUse.options || {}// for each user rule (expect the vue rule), create a cloned rule// that targets the corresponding language blocks in *.vue files.const clonedRules = rules.filter(r => r !== vueRule).map(cloneRule)// global pitcher (responsible for injecting template compiler loader & CSS// post loader)const pitcher = {loader: require.resolve('./loaders/pitcher'),resourceQuery: query => {const parsed = qs.parse(query.slice(1))return parsed.vue != null},options: {cacheDirectory: vueLoaderUse.options.cacheDirectory,cacheIdentifier: vueLoaderUse.options.cacheIdentifier}}// replace original rulescompiler.options.module.rules = [pitcher,...clonedRules,...rules]} }function createMatcher (fakeFile) {return (rule, i) => {// #1201 we need to skip the `include` check when locating the vue ruleconst clone = Object.assign({}, rule)delete clone.includeconst normalized = RuleSet.normalizeRule(clone, {}, '')return (!rule.enforce &&normalized.resource &&normalized.resource(fakeFile))} }function cloneRule (rule) {const { resource, resourceQuery } = rule// Assuming `test` and `resourceQuery` tests are executed in series and// synchronously (which is true based on RuleSet's implementation), we can// save the current resource being matched from `test` so that we can access// it in `resourceQuery`. This ensures when we use the normalized rule's// resource check, include/exclude are matched correctly.let currentResourceconst res = Object.assign({}, rule, {resource: {test: resource => {currentResource = resourcereturn true}},resourceQuery: query => {const parsed = qs.parse(query.slice(1))if (parsed.vue == null) {return false}if (resource && parsed.lang == null) {return false}const fakeResourcePath = `${currentResource}.${parsed.lang}`if (resource && !resource(fakeResourcePath)) {return false}if (resourceQuery && !resourceQuery(query)) {return false}return true}})if (rule.rules) {res.rules = rule.rules.map(cloneRule)}if (rule.oneOf) {res.oneOf = rule.oneOf.map(cloneRule)}return res }VueLoaderPlugin.NS = NS module.exports = VueLoaderPlugin

    又是很長一段代碼!!

    我們直接找到這么一段代碼:

    class VueLoaderPlugin {apply (compiler) {...// use webpack's RuleSet utility to normalize user rulesconst rawRules = compiler.options.module.rulesconst { rules } = new RuleSet(rawRules)// find the rule that applies to vue fileslet vueRuleIndex = rawRules.findIndex(createMatcher(`foo.vue`))if (vueRuleIndex < 0) {vueRuleIndex = rawRules.findIndex(createMatcher(`foo.vue.html`))}const vueRule = rules[vueRuleIndex]if (!vueRule) {throw new Error(`[VueLoaderPlugin Error] No matching rule for .vue files found.\n` +`Make sure there is at least one root-level rule that matches .vue or .vue.html files.`)}// get the normlized "use" for vue filesconst vueUse = vueRule.use// get vue-loader optionsconst vueLoaderUseIndex = vueUse.findIndex(u => {return /^vue-loader|(\/|\\|@)vue-loader/.test(u.loader)})// make sure vue-loader options has a known ident so that we can share// options by reference in the template-loader by using a ref query like// template-loader??vue-loader-optionsconst vueLoaderUse = vueUse[vueLoaderUseIndex]...

    首先找到了我們配置在webpack中的vueLoaderUse,也就是我們配置的“vue-loader”,然后給默認webpack的loader配置中添加了一個叫“pitcher”的loader:

    ...const vueLoaderUse = vueUse[vueLoaderUseIndex]vueLoaderUse.ident = 'vue-loader-options'vueLoaderUse.options = vueLoaderUse.options || {}// for each user rule (expect the vue rule), create a cloned rule// that targets the corresponding language blocks in *.vue files.const clonedRules = rules.filter(r => r !== vueRule).map(cloneRule)// global pitcher (responsible for injecting template compiler loader & CSS// post loader)const pitcher = {loader: require.resolve('./loaders/pitcher'),resourceQuery: query => {const parsed = qs.parse(query.slice(1))return parsed.vue != null},options: {cacheDirectory: vueLoaderUse.options.cacheDirectory,cacheIdentifier: vueLoaderUse.options.cacheIdentifier}}// replace original rulescompiler.options.module.rules = [pitcher,...clonedRules,...rules] ...

    我們看一下“pitcher-loader”干了什么?

    我們先看一下默認loader的執行順序,比如我們的配置是這樣的:

    odule.exports = {//...module: {rules: [{//...use: ['a-loader','b-loader','c-loader']}]} };

    然后webpack默認加載順序是這樣的:

    |- a-loader `pitch` //如果a-loader有pitch函數就會先加載a-loader的pitch函數|- b-loader `pitch`|- c-loader `pitch`|- requested module is picked up as a dependency|- c-loader normal execution|- b-loader normal execution |- a-loader normal execution

    但凡有一個loader是有pitch函數并且pitch函數有返回值的話,順序又不一樣了,比如當a-loader的pitch函數有返回值的時候,

    a-loader:

    module.exports = function(content) {return someSyncOperation(content); }; module.exports.pitch = function(remainingRequest, precedingRequest, data) {if (someCondition()) {return 'module.exports = require(' + JSON.stringify('-!' + remainingRequest) + ');';} };

    執行順序就變成了:

    |- a-loader `pitch`

    當a-loader的pitch函數有返回值的時候,就只會執行排在a-loader之后的loader,但是在我們當前配置中a-loader之后已經沒有loader了,所以會直接返回:

    return 'module.exports = require(' + JSON.stringify('-!' + remainingRequest) + ');';

    具體大家可以可以看一下webpack官網,或者可以看看網上的這篇文章[揭秘webpack loader](https://segmentfault.com/a/1190000021657031),借用下他文章的兩幅圖:

    當有pitch返回值的時候,比如loader2的pitch函數有返回值了:

    好吧,我簡單的帶大家看一下webpack源碼~

    還記得我們文章一開始的斷點嗎?

    當webpack需要加載某個模塊的時候(app.vue),會先執行NormalModule的doBuild方法,

    node_modules/webpack/lib/NormalModule.js:

    const { getContext, runLoaders } = require("loader-runner"); ... doBuild(options, compilation, resolver, fs, callback) {const loaderContext = this.createLoaderContext(resolver,options,compilation,fs);runLoaders({resource: this.resource, //當前app.vue文件位置loaders: this.loaders, //加載app.vue的所有loadercontext: loaderContext, //loader上線文對象readResource: fs.readFile.bind(fs) //當前webpack文件系統},...

    ok,可以看到之后就是執行了runLoaders方法,webpack直接把runLoaders方法放到了一個叫“loader-runner”的第三方依賴中,

    node_modules/loader-runner/lib/LoaderRunner.js:

    ... exports.runLoaders = function runLoaders(options, callback) {// read optionsvar resource = options.resource || "";var loaders = options.loaders || [];iteratePitchingLoaders(processOptions, loaderContext, function(err, result) {....});...

    代碼有點多,我們直接看重點,我們看到runLoaders方法中又執行了一個叫iteratePitchingLoaders的方法:

    function iteratePitchingLoaders(options, loaderContext, callback) {// abort after last loaderif(loaderContext.loaderIndex >= loaderContext.loaders.length)return processResource(options, loaderContext, callback);var currentLoaderObject = loaderContext.loaders[loaderContext.loaderIndex];// iterateif(currentLoaderObject.pitchExecuted) {loaderContext.loaderIndex++;return iteratePitchingLoaders(options, loaderContext, callback);}// load loader moduleloadLoader(currentLoaderObject, function(err) {if(err) {loaderContext.cacheable(false);return callback(err);}var fn = currentLoaderObject.pitch;currentLoaderObject.pitchExecuted = true;if(!fn) return iteratePitchingLoaders(options, loaderContext, callback);runSyncOrAsync(fn,loaderContext, [loaderContext.remainingRequest, loaderContext.previousRequest, currentLoaderObject.data = {}],function(err) {if(err) return callback(err);var args = Array.prototype.slice.call(arguments, 1);if(args.length > 0) {loaderContext.loaderIndex--;iterateNormalLoaders(options, loaderContext, args, callback);} else {iteratePitchingLoaders(options, loaderContext, callback);}});}); }

    ok, 這里代碼我們就不詳細解析了,小伙伴自己去斷點跑跑就ok了,還是很容易看懂的,翻譯過后的邏輯就是我們前面說的那樣:

    比如我們的配置是這樣的:

    odule.exports = {//...module: {rules: [{//...use: ['a-loader','b-loader','c-loader']}]} };

    然后webpack默認加載順序是這樣的:

    |- a-loader `pitch` //如果a-loader有pitch函數就會先加載a-loader的pitch函數|- b-loader `pitch`|- c-loader `pitch`|- requested module is picked up as a dependency|- c-loader normal execution|- b-loader normal execution |- a-loader normal execution

    ok!又說了那么多webpack-loader的知識,我們還是回到我們的vue-loader,前面說了vue-loader的VueLoaderPlugin給我們默認loaders上面又添加了一個叫“pitcher-loader”的配置,

    node_modules/vue-loader/lib/plugin-webpack4.js:

    ...const pitcher = {loader: require.resolve('./loaders/pitcher'),resourceQuery: query => {const parsed = qs.parse(query.slice(1))return parsed.vue != null},options: {cacheDirectory: vueLoaderUse.options.cacheDirectory,cacheIdentifier: vueLoaderUse.options.cacheIdentifier}}// replace original rulescompiler.options.module.rules = [pitcher,...clonedRules,...rules] ...

    node_modules/vue-loader/lib/loaders/pitcher.js:

    ... module.exports = code => code// This pitching loader is responsible for intercepting all vue block requests // and transform it into appropriate requests. module.exports.pitch = function (remainingRequest) {const options = loaderUtils.getOptions(this)const { cacheDirectory, cacheIdentifier } = optionsconst query = qs.parse(this.resourceQuery.slice(1))let loaders = this.loaders//過濾掉eslint-loaderif (query.type) {// if this is an inline block, since the whole file itself is being linted,// remove eslint-loader to avoid duplicate linting.if (/\.vue$/.test(this.resourcePath)) {loaders = loaders.filter(l => !isESLintLoader(l))} else {// This is a src import. Just make sure there's not more than 1 instance// of eslint present.loaders = dedupeESLintLoader(loaders)}}// 過濾掉自己loaders = loaders.filter(isPitcher)// 過濾掉一些null-loaderif (loaders.some(isNullLoader)) {return}const genRequest = loaders => {// Important: dedupe since both the original rule// and the cloned rule would match a source import request.// also make sure to dedupe based on loader path.// assumes you'd probably never want to apply the same loader on the same// file twice.// Exception: in Vue CLI we do need two instances of postcss-loader// for user config and inline minification. So we need to dedupe baesd on// path AND query to be safe.const seen = new Map()const loaderStrings = []loaders.forEach(loader => {const identifier = typeof loader === 'string'? loader: (loader.path + loader.query)const request = typeof loader === 'string' ? loader : loader.requestif (!seen.has(identifier)) {seen.set(identifier, true)// loader.request contains both the resolved loader path and its options// query (e.g. ??ref-0)loaderStrings.push(request)}})return loaderUtils.stringifyRequest(this, '-!' + [...loaderStrings,this.resourcePath + this.resourceQuery].join('!'))}// Inject style-post-loader before css-loader for scoped CSS and trimmingif (query.type === `style`) {const cssLoaderIndex = loaders.findIndex(isCSSLoader)if (cssLoaderIndex > -1) {const afterLoaders = loaders.slice(0, cssLoaderIndex + 1)const beforeLoaders = loaders.slice(cssLoaderIndex + 1)const request = genRequest([...afterLoaders,stylePostLoaderPath,...beforeLoaders])// console.log(request)return `import mod from ${request}; export default mod; export * from ${request}`}}// for templates: inject the template compiler & optional cacheif (query.type === `template`) {const path = require('path')const cacheLoader = cacheDirectory && cacheIdentifier? [`${require.resolve('cache-loader')}?${JSON.stringify({// For some reason, webpack fails to generate consistent hash if we// use absolute paths here, even though the path is only used in a// comment. For now we have to ensure cacheDirectory is a relative path.cacheDirectory: (path.isAbsolute(cacheDirectory)? path.relative(process.cwd(), cacheDirectory): cacheDirectory).replace(/\\/g, '/'),cacheIdentifier: hash(cacheIdentifier) + '-vue-loader-template'})}`]: []const preLoaders = loaders.filter(isPreLoader)const postLoaders = loaders.filter(isPostLoader)const request = genRequest([...cacheLoader,...postLoaders,templateLoaderPath + `??vue-loader-options`,...preLoaders])// console.log(request)// the template compiler uses esm exportsreturn `export * from ${request}`}// if a custom block has no other matching loader other than vue-loader itself// or cache-loader, we should ignore itif (query.type === `custom` && shouldIgnoreCustomBlock(loaders)) {return ``}// When the user defines a rule that has only resourceQuery but no test,// both that rule and the cloned rule will match, resulting in duplicated// loaders. Therefore it is necessary to perform a dedupe here.const request = genRequest(loaders)return `import mod from ${request}; export default mod; export * from ${request}` }

    ok,我們先放一放這個“pitcher-loader”😂

    在文章一開始的時候還記得我們的斷點嗎?當webpack在加載app.vue模塊的時候,webpack使用的loader有(loader執行順序為從下往上):

  • vue-loader
  • eslint-loader
  • ok,我們先直接看一下當我們的app.vue文件:

    <template><div class="app-container">{{ msg }}</div> </template><script lang="ts"> import { Vue, Component } from "vue-property-decorator";@Component export default class App extends Vue {msg = "hello world";user = {name: "yasin"};created(): void {// const name = this.user?.name;// console.log("name");} } </script><style scoped lang="scss"> .app-container {color: red; } </style>

    經過vue-loader后變成什么樣了?

    import { render, staticRenderFns } from "./app.vue?vue&type=template&id=5ef48958&scoped=true&" import script from "./app.vue?vue&type=script&lang=ts&" export * from "./app.vue?vue&type=script&lang=ts&" import style0 from "./app.vue?vue&type=style&index=0&id=5ef48958&scoped=true&lang=scss&"/* normalize component */ import normalizer from "!../node_modules/vue-loader/lib/runtime/componentNormalizer.js" var component = normalizer(script,render,staticRenderFns,false,null,"5ef48958",null)/* hot reload */ if (module.hot) {var api = require("/Users/ocj1/doc/h5/study/webpack/webpack-vue-demo/node_modules/vue-hot-reload-api/dist/index.js")api.install(require('vue'))if (api.compatible) {module.hot.accept()if (!api.isRecorded('5ef48958')) {api.createRecord('5ef48958', component.options)} else {api.reload('5ef48958', component.options)}module.hot.accept("./app.vue?vue&type=template&id=5ef48958&scoped=true&", function () {api.rerender('5ef48958', {render: render,staticRenderFns: staticRenderFns})})} } component.options.__file = "src/app.vue" export default component.exports

    ok, 可以看到,我們的模版代碼:

    <template><div class="app-container">{{ msg }}</div> </template>

    第一次經過vue-loader變成了:

    import { render, staticRenderFns } from "./app.vue?vue&type=template&id=5ef48958&scoped=true&"

    然后我們的script代碼:

    <script lang="ts"> import { Vue, Component } from "vue-property-decorator";@Component export default class App extends Vue {msg = "hello world";user = {name: "yasin"};created(): void {// const name = this.user?.name;// console.log("name");} } </script>

    第一次經過vue-loader變成了:

    import script from "./app.vue?vue&type=script&lang=ts&"

    我們的style模塊代碼:

    <style scoped lang="scss"> .app-container {color: red; } </style>

    第一次經過vue-loader變成了:

    import style0 from "./app.vue?vue&type=style&index=0&id=5ef48958&scoped=true&lang=scss&"

    然后這幾個的值傳給了一個叫“normalizer”的方法:

    /* normalize component */ import normalizer from "!../node_modules/vue-loader/lib/runtime/componentNormalizer.js" var component = normalizer(script,render,staticRenderFns,false,null,"5ef48958",null)

    最后我們的app.vue經過vue-loader后導出了一個vue組件:

    export default component.exports

    ok,我們看一下component返回的是不是一個vue組件呢?

    我們直接找到“!../node_modules/vue-loader/lib/runtime/componentNormalizer.js”文件:

    /* globals __VUE_SSR_CONTEXT__ */// IMPORTANT: Do NOT use ES2015 features in this file (except for modules). // This module is a runtime utility for cleaner component module output and will // be included in the final webpack user bundle.export default function normalizeComponent (scriptExports,render,staticRenderFns,functionalTemplate,injectStyles,scopeId,moduleIdentifier, /* server only */shadowMode /* vue-cli only */ ) {// Vue.extend constructor export interopvar options = typeof scriptExports === 'function'? scriptExports.options: scriptExports// render functionsif (render) {options.render = renderoptions.staticRenderFns = staticRenderFnsoptions._compiled = true}// functional templateif (functionalTemplate) {options.functional = true}// scopedIdif (scopeId) {options._scopeId = 'data-v-' + scopeId}var hookif (moduleIdentifier) { // server buildhook = function (context) {// 2.3 injectioncontext =context || // cached call(this.$vnode && this.$vnode.ssrContext) || // stateful(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional// 2.2 with runInNewContext: trueif (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {context = __VUE_SSR_CONTEXT__}// inject component stylesif (injectStyles) {injectStyles.call(this, context)}// register component module identifier for async chunk inferrenceif (context && context._registeredComponents) {context._registeredComponents.add(moduleIdentifier)}}// used by ssr in case component is cached and beforeCreate// never gets calledoptions._ssrRegister = hook} else if (injectStyles) {hook = shadowMode? function () {injectStyles.call(this,(options.functional ? this.parent : this).$root.$options.shadowRoot)}: injectStyles}if (hook) {if (options.functional) {// for template-only hot-reload because in that case the render fn doesn't// go through the normalizeroptions._injectStyles = hook// register for functional component in vue filevar originalRender = options.renderoptions.render = function renderWithStyleInjection (h, context) {hook.call(context)return originalRender(h, context)}} else {// inject component registration as beforeCreate hookvar existing = options.beforeCreateoptions.beforeCreate = existing? [].concat(existing, hook): [hook]}}return {exports: scriptExports,options: options} }

    ok,這里代碼還是很容易看懂的,以我們app.vue為例,最后componentNormalizer會返回一個:

    {exports: {render(h){var _vm = thisvar _h = _vm.$createElementvar _c = _vm._self._c || _hreturn _c("div", { staticClass: "app-container" }, [_vm._v(_vm._s(_vm.msg))])},data:{msg: "hello world"},beforeCreate:[...hook]},options: ...}

    我這里只是簡單的列了一下哈,后面我們會具體分析到,也就是說componentNormalizer會把我們的app.vue模版文件解析成一個普通的vue組件。

    ok,我們的app.vue文件第一次被vue-loader解析后的代碼是這樣的:

    import { render, staticRenderFns } from "./app.vue?vue&type=template&id=5ef48958&scoped=true&" import script from "./app.vue?vue&type=script&lang=ts&" export * from "./app.vue?vue&type=script&lang=ts&" import style0 from "./app.vue?vue&type=style&index=0&id=5ef48958&scoped=true&lang=scss&"/* normalize component */ import normalizer from "!../node_modules/vue-loader/lib/runtime/componentNormalizer.js" var component = normalizer(script,render,staticRenderFns,false,null,"5ef48958",null)/* hot reload */ if (module.hot) {var api = require("/Users/ocj1/doc/h5/study/webpack/webpack-vue-demo/node_modules/vue-hot-reload-api/dist/index.js")api.install(require('vue'))if (api.compatible) {module.hot.accept()if (!api.isRecorded('5ef48958')) {api.createRecord('5ef48958', component.options)} else {api.reload('5ef48958', component.options)}module.hot.accept("./app.vue?vue&type=template&id=5ef48958&scoped=true&", function () {api.rerender('5ef48958', {render: render,staticRenderFns: staticRenderFns})})} } component.options.__file = "src/app.vue" export default component.exports

    可以看到,解析完了的vue-loader里面又引用了app.vue文件,比如我們模版轉換過后的代碼:

    import { render, staticRenderFns } from "./app.vue?vue&type=template&id=5ef48958&scoped=true&"

    所以當webpack又執行到這一行代碼的時候,我們看一下webpack默認又用什么樣的loader去加載它呢?

    ok, 可以看到,會有三個loader去加載"./app.vue?vue&type=template&id=5ef48958&scoped=true&"模塊(從下往上):

  • xxx/node_modules/vue-loader/lib/loaders/pitcher.js
  • vue-loader
  • eslint-loader
  • ok, 還記得我們前面說的loader執行順序嗎?

    |- a-loader `pitch` //如果a-loader有pitch函數就會先加載a-loader的pitch函數|- b-loader `pitch`|- c-loader `pitch`|- requested module is picked up as a dependency|- c-loader normal execution|- b-loader normal execution |- a-loader normal execution

    我們這里的順序為:

    |-xxx/node_modules/vue-loader/lib/loaders/pitcher.js `pitch`|-vue-loader `pitch`|-eslint-loader `pitch`|- requested module is picked up as a dependency|-eslint-loader normal execution|-vue-loader normal execution |-xxx/node_modules/vue-loader/lib/loaders/pitcher.js normal execution

    ok, 如果當“xxx/node_modules/vue-loader/lib/loaders/pitcher.js”的pitch函數有返回值時,會執行排在pitcher-loader之前的loader,但是我們可以發現,排在pitcher-loader之前已經沒有loader了,所以會直接返回pitcher-loader的pitch函數返回的內容,我們來看看“xxx/node_modules/vue-loader/lib/loaders/pitcher.js” loader的pitch方法到底返回了什么?

    node_modules/vue-loader/lib/loaders/pitcher.js:

    module.exports.pitch = function (remainingRequest) {...// for templates: inject the template compiler & optional cacheif (query.type === `template`) {const path = require('path')const cacheLoader = cacheDirectory && cacheIdentifier? [`${require.resolve('cache-loader')}?${JSON.stringify({// For some reason, webpack fails to generate consistent hash if we// use absolute paths here, even though the path is only used in a// comment. For now we have to ensure cacheDirectory is a relative path.cacheDirectory: (path.isAbsolute(cacheDirectory)? path.relative(process.cwd(), cacheDirectory): cacheDirectory).replace(/\\/g, '/'),cacheIdentifier: hash(cacheIdentifier) + '-vue-loader-template'})}`]: []const preLoaders = loaders.filter(isPreLoader)const postLoaders = loaders.filter(isPostLoader)const request = genRequest([...cacheLoader,...postLoaders,templateLoaderPath + `??vue-loader-options`,...preLoaders])// console.log(request)// the template compiler uses esm exportsreturn `export * from ${request}`}...

    ok,也就是說當我們的這一行代碼:

    import { render, staticRenderFns } from "./app.vue?vue&type=template&id=5ef48958&scoped=true&"

    經過“node_modules/vue-loader/lib/loaders/pitcher.js”后會變成什么樣呢?

    export * from "-!../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../node_modules/vue-loader/lib/index.js??vue-loader-options!./app.vue?vue&type=template&id=5ef48958&scoped=true&"

    ok,可以看到又是直接導入app.vue,然后讓:

  • …/node_modules/vue-loader/lib/loaders/templateLoader.js
  • …/node_modules/vue-loader/lib/index.js
  • 這兩個loader去加載app.vue。

    這里再說幾個webpack中的知識:

    loader分為:

    • pre: 前置loader
    • normal: 普通loader
    • inline: 內聯loader
    • post: 后置loade

    執行順序為:pre > normal > inline > post

    內聯 loader 可以通過添加不同前綴,跳過其他類型 loader(從右至左)。

    • ! 跳過 normal loader。
    • -! 跳過 pre 和 normal loader。
    • !! 跳過 pre、 normal 和 post loader。

    所以針對這里的:

    export * from "-!../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../node_modules/vue-loader/lib/index.js??vue-loader-options!./app.vue?vue&type=template&id=5ef48958&scoped=true&"

    首先執行的是"…/node_modules/vue-loader/lib/index.js??vue-loader-options!./app.vue?vue&type=template&id=5ef48958&scoped=true&",“??vue-loader-options!./app.vue?vue&type=template&id=5ef48958&scoped=true&”是vue-loader的參數,這次我們看一下vue-loader會把我們的app.vue轉成什么樣子呢?

    node_modules/vue-loader/lib/index.js

    module.exports = function (source) { ... if (incomingQuery.type) {return selectBlock(descriptor,loaderContext,incomingQuery,!!options.appendExtension)}

    可以看到,這一次我們的loader是帶有type=template參數的,所以進了vue-loader的selectBlock方法,

    node_modules/vue-loader/lib/select.js:

    module.exports = function selectBlock (descriptor,loaderContext,query,appendExtension ) {// templateif (query.type === `template`) {if (appendExtension) {loaderContext.resourcePath += '.' + (descriptor.template.lang || 'html')}loaderContext.callback(null,descriptor.template.content,descriptor.template.map)return}// scriptif (query.type === `script`) {if (appendExtension) {loaderContext.resourcePath += '.' + (descriptor.script.lang || 'js')}loaderContext.callback(null,descriptor.script.content,descriptor.script.map)return}// stylesif (query.type === `style` && query.index != null) {const style = descriptor.styles[query.index]if (appendExtension) {loaderContext.resourcePath += '.' + (style.lang || 'css')}loaderContext.callback(null,style.content,style.map)return}// customif (query.type === 'custom' && query.index != null) {const block = descriptor.customBlocks[query.index]loaderContext.callback(null,block.content,block.map)return} }

    最后經過select輸出:

    <div class="app-container">{{ msg }}</div>

    ok,然后vue-loader處理完后給到了“…/node_modules/vue-loader/lib/loaders/templateLoader.js”,

    /node_modules/vue-loader/lib/loaders/templateLoader.js:

    const qs = require('querystring') const loaderUtils = require('loader-utils') const { compileTemplate } = require('@vue/component-compiler-utils')// Loader that compiles raw template into JavaScript functions. // This is injected by the global pitcher (../pitch) for template // selection requests initiated from vue files. module.exports = function (source) {const loaderContext = thisconst query = qs.parse(this.resourceQuery.slice(1))// although this is not the main vue-loader, we can get access to the same// vue-loader options because we've set an ident in the plugin and used that// ident to create the request for this loader in the pitcher.const options = loaderUtils.getOptions(loaderContext) || {}const { id } = queryconst isServer = loaderContext.target === 'node'const isProduction = options.productionMode || loaderContext.minimize || process.env.NODE_ENV === 'production'const isFunctional = query.functional// allow using custom compiler via optionsconst compiler = options.compiler || require('vue-template-compiler')const compilerOptions = Object.assign({outputSourceRange: true}, options.compilerOptions, {scopeId: query.scoped ? `data-v-${id}` : null,comments: query.comments})// for vue-component-compilerconst finalOptions = {source,filename: this.resourcePath,compiler,compilerOptions,// allow customizing behavior of vue-template-es2015-compilertranspileOptions: options.transpileOptions,transformAssetUrls: options.transformAssetUrls || true,isProduction,isFunctional,optimizeSSR: isServer && options.optimizeSSR !== false,prettify: options.prettify}const compiled = compileTemplate(finalOptions)// tipsif (compiled.tips && compiled.tips.length) {compiled.tips.forEach(tip => {loaderContext.emitWarning(typeof tip === 'object' ? tip.msg : tip)})}// errorsif (compiled.errors && compiled.errors.length) {// 2.6 compiler outputs errors as objects with rangeif (compiler.generateCodeFrame && finalOptions.compilerOptions.outputSourceRange) {// TODO account for line offset in case template isn't placed at top// of the fileloaderContext.emitError(`\n\n Errors compiling template:\n\n` +compiled.errors.map(({ msg, start, end }) => {const frame = compiler.generateCodeFrame(source, start, end)return ` ${msg}\n\n${pad(frame)}`}).join(`\n\n`) +'\n')} else {loaderContext.emitError(`\n Error compiling template:\n${pad(compiled.source)}\n` +compiled.errors.map(e => ` - ${e}`).join('\n') +'\n')}}const { code } = compiled// finish with ESM exportsreturn code + `\nexport { render, staticRenderFns }` }function pad (source) {return source.split(/\r?\n/).map(line => ` ${line}`).join('\n') }

    我們看一下“/node_modules/vue-loader/lib/loaders/templateLoader.js”處理完后又變成什么樣了?

    var render = function() {var _vm = thisvar _h = _vm.$createElementvar _c = _vm._self._c || _hreturn _c("div", { staticClass: "app-container" }, [_vm._v(_vm._s(_vm.msg))]) } var staticRenderFns = [] render._withStripped = true export { render, staticRenderFns}

    總結

    ok,終于是轉完畢了,我們再從新回顧一下整個流程(我這里以app.vue的template為例子)。

    首先是我們的app.vue文件template:

    <template><div class="app-container">{{ msg }}</div> </template>

    然后經過vue-loader后:

    import { render, staticRenderFns } from "./app.vue?vue&type=template&id=5ef48958&scoped=true&"

    然后是pitcher-loader:

    export * from "-!../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../node_modules/vue-loader/lib/index.js??vue-loader-options!./app.vue?vue&type=template&id=5ef48958&scoped=true&"

    接著又是vue-loader:

    <div class="app-container">{{ msg }}</div>

    然后是…/node_modules/vue-loader/lib/loaders/templateLoader.js:

    var render = function() {var _vm = thisvar _h = _vm.$createElementvar _c = _vm._self._c || _hreturn _c("div", { staticClass: "app-container" }, [_vm._v(_vm._s(_vm.msg))]) } var staticRenderFns = [] render._withStripped = true export { render, staticRenderFns }

    ok, app.vue中的template模塊解析過程就是這樣的了,還有script跟style,過程都差不多,小伙伴自己結合demo跟斷點跑一下哦,我就不演示了!

    補充

    vue模塊熱載

    webpack中的模塊熱載集成大家可以看webpack官網:https://webpack.js.org/api/hot-module-replacement/.

    當我們的app.vue第一次經過vue-loader后:

    import { render, staticRenderFns } from "./app.vue?vue&type=template&id=5ef48958&scoped=true&" import script from "./app.vue?vue&type=script&lang=ts&" export * from "./app.vue?vue&type=script&lang=ts&" import style0 from "./app.vue?vue&type=style&index=0&id=5ef48958&scoped=true&lang=scss&"/* normalize component */ import normalizer from "!../node_modules/vue-loader/lib/runtime/componentNormalizer.js" var component = normalizer(script,render,staticRenderFns,false,null,"5ef48958",null)/* hot reload */ if (module.hot) {//加載vue模塊熱載代碼var api = require("xxx/node_modules/vue-hot-reload-api/dist/index.js")api.install(require('vue'))if (api.compatible) {module.hot.accept() //把當前模塊加入到webpack的熱載中(當前模塊有變換的時候會通知)if (!api.isRecorded('5ef48958')) { //第一次的時候記錄當前組件api.createRecord('5ef48958', component.options)} else { //熱載的時候從新渲染當前組件api.reload('5ef48958', component.options)}//模塊代碼改變的時候也認為可以熱載,通知當前組件刷新module.hot.accept("./app.vue?vue&type=template&id=5ef48958&scoped=true&", function () {api.rerender('5ef48958', {render: render,staticRenderFns: staticRenderFns})})} } component.options.__file = "src/app.vue" export default component.exports

    node_modules/vue-hot-reload-api/dist/index.js:

    exports.reload = tryWrap(function (id, options) {...record.instances.slice().forEach(function (instance) {if (instance.$vnode && instance.$vnode.context) {instance.$vnode.context.$forceUpdate() //強制刷新組件} else {console.warn('Root or manually mounted instance modified. Full reload required.')}}) })

    ok!整個vue-loader流程我們差不多擼了一遍,其實掌握了webpack后這東西感覺也不是很難了對吧?😄😄,所以強烈推薦小伙伴看看之前的webpack的文章,覺得不錯的也可以關注跟點點贊哦! 也歡迎志同道合的小伙伴一起學習一起交流!!

    總結

    以上是生活随笔為你收集整理的手把手带你撸一遍vue-loader源码的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

    精品国产美女在线 | 亚洲精品在线看 | 日韩理论影院 | 在线黄av| 国内精品久久久久久久久久久 | 欧美日韩在线网站 | 色国产精品一区在线观看 | 黄污网站在线 | 久久久午夜剧场 | 视频在线精品 | 狠狠色狠狠色终合网 | 9999免费视频 | 国内精品久久久久久 | 黄色成人影院 | 99性视频 | 久在线观看视频 | 亚洲视频免费在线看 | 国产一二区视频 | 日日碰夜夜爽 | 欧美日韩中文视频 | 亚洲国产高清在线观看视频 | 五月天天在线 | 国产亚洲成人精品 | 在线国产一区二区三区 | 欧美一级性生活片 | 天天射天天干天天插 | 亚洲精品免费视频 | 欧美激情视频一二区 | 日本韩国精品一区二区在线观看 | 在线黄色观看 | 探花视频免费观看高清视频 | 中文字幕 国产视频 | av色综合| 天天综合网~永久入口 | av黄色影院 | 国产高清福利在线 | 97精品电影院 | 精品美女在线视频 | 九九九九九精品 | 国产999视频在线观看 | 高清av免费看 | 日韩一区二区免费在线观看 | 亚洲午夜久久久久久久久 | 中文区中文字幕免费看 | 激情开心 | 成人黄大片视频在线观看 | 亚洲国产精品999 | 精品视频123区在线观看 | 一区二区视频在线观看免费 | 中文字幕一区二区三区视频 | 亚州av免费 | 99国内精品久久久久久久 | 91亚洲国产成人久久精品网站 | 97碰在线视频 | av中文在线影视 | 久久久亚洲精华液 | 中文字幕有码在线观看 | 亚洲电影久久久 | 国产福利av在线 | 日韩中文字幕亚洲一区二区va在线 | 一区二区欧美日韩 | 色视频网站免费观看 | av中文字幕免费在线观看 | 国产视频资源在线观看 | av免费看网站 | 久久精品日本啪啪涩涩 | 狠狠色噜噜狠狠狠 | 亚洲三级毛片 | 国产成人在线看 | 81精品国产乱码久久久久久 | 在线播放一区二区三区 | 天天操欧美| 4438全国亚洲精品观看视频 | 伊人婷婷综合 | 国产在线精品观看 | 国产高清专区 | 日本公妇在线观看高清 | 成人在线视频免费 | 久久中文字幕视频 | 日韩精品在线视频免费观看 | 久久大视频 | 97超碰人| 91在线观 | 九色琪琪久久综合网天天 | 99久久一区 | 欧美精品黑人性xxxx | 国内一区二区视频 | 日本精品视频在线播放 | 三级av小说 | 亚洲精选在线 | 久久公开免费视频 | 操操操影院 | 午夜91在线 | 免费看一级黄色 | 亚洲国产精品视频在线观看 | 国产一级二级在线观看 | 久久精品一区二区国产 | 亚洲午夜久久久久 | 黄色精品久久久 | 亚洲精品色视频 | 亚洲激情视频 | 国产中文字幕三区 | 精品国产诱惑 | 欧美日韩高清免费 | 玖玖爱国产在线 | www.午夜| 66av99精品福利视频在线 | 国产福利免费看 | 欧美aaa一级 | 国产成人精品亚洲a | 99人成在线观看视频 | 97视频入口免费观看 | 日韩乱码中文字幕 | 日本精品久久久久 | 91av色 | 国产精品久久久久久五月尺 | 色网站国产精品 | 久久成人免费视频 | 日韩欧美在线影院 | 日韩欧美在线高清 | 国内成人av| 亚洲精品国产精品国自产 | 欧美 日韩 国产 成人 在线 | 亚洲国产无 | 91探花国产综合在线精品 | 伊人天天操| 亚洲成人家庭影院 | 美女网站在线播放 | 丁香花在线观看免费完整版视频 | 午夜久久久影院 | 欧美午夜a| 国产无吗一区二区三区在线欢 | 色综合久久久久久久 | 久久国产美女视频 | 国产午夜精品一区二区三区欧美 | 在线观看亚洲专区 | 97麻豆视频 | 国精产品999国精产 久久久久 | 欧美精品在线视频观看 | 成人一级在线 | 在线观av| 成人久久久久 | 国产精品美女视频 | 国产成人av福利 | 国产成人精品一区二区三区福利 | 美女久久久久久久 | 中文字幕在线国产精品 | 黄色一级大片在线免费看产 | 精品免费在线视频 | 波多野结衣视频网址 | 久久免费在线视频 | 国产亚洲一区二区在线观看 | 九九热精品在线 | 日本精品中文字幕 | 四虎最新入口 | 国产视频一区二区三区在线 | 99在线精品免费视频九九视 | 少妇性bbb搡bbb爽爽爽欧美 | 欧美日韩伦理一区 | 国产五月婷 | 久久久久久免费网 | 在线观看a视频 | 91正在播放 | 蜜臀av性久久久久蜜臀aⅴ流畅 | 久草在线高清 | av线上看 | 国产精品18久久久久久vr | 天天射天 | 国产丝袜在线 | 国产最新福利 | 五月丁婷婷 | 美女国内精品自产拍在线播放 | 日韩一区二区三区视频在线 | 欧美精品久久人人躁人人爽 | 久久久久久久久爱 | 激情久久久久 | 在线观看第一页 | 国产在线精品视频 | 成人免费一区二区三区在线观看 | 亚洲乱码国产乱码精品天美传媒 | 欧美在线视频a | 国产精品美女久久久 | 在线免费试看 | 天天干天天草 | 欧美激情综合五月色丁香 | 操操爽 | 久久久精品国产一区二区三区 | 欧美成人手机版 | 毛片网免费 | 亚洲精品久久视频 | 国产高清中文字幕 | 久久伊人八月婷婷综合激情 | 国产字幕在线看 | 91最新在线视频 | 91视频3p | 91精品伦理 | 国产最新91| 波多野结衣理论片 | 在线99热 | 九九九热精品免费视频观看 | 在线不卡中文字幕播放 | 狠狠操夜夜操 | 国产午夜三级一区二区三 | 国产99久久久国产精品免费看 | 日本黄色免费在线观看 | 国产无遮挡又黄又爽馒头漫画 | 日韩av进入 | 91中文字幕网 | 久久男人中文字幕资源站 | 香蕉蜜桃视频 | 黄污网站在线观看 | 国产69精品久久久久久 | 亚洲成人资源在线 | 日韩精品中文字幕在线不卡尤物 | 久久久久久久av | 深夜免费福利视频 | 国产91粉嫩白浆在线观看 | 中文字幕中文字幕在线中文字幕三区 | 欧美十八| 91免费在线播放 | 超碰av在线播放 | 色天天天 | 五月天激情视频 | 欧美日韩国产网站 | 欧美日韩高清一区二区 国产亚洲免费看 | 免费看的黄色 | 日韩特黄av | 97免费视频在线播放 | 97色在线| 日韩中文字幕免费 | 日韩网站视频 | 8090yy亚洲精品久久 | 欧美a在线看 | 亚洲精选99 | 九九99| 国产破处在线视频 | 成年人在线看片 | 色综合久久精品 | 日韩欧美在线一区 | 日韩欧美国产激情在线播放 | 日产乱码一二三区别免费 | 欧美一级片免费在线观看 | 国产精品专区h在线观看 | 久草在线资源网 | 尤物九九久久国产精品的分类 | 二区中文字幕 | 色综合天天狠狠 | 婷婷 中文字幕 | 麻豆视频大全 | 色婷婷国产在线 | 91完整视频 | 91精品国产一区二区在线观看 | 精品久久久国产 | 久久激情久久 | 亚洲人人精品 | 在线观看涩涩 | 国产黄色精品在线观看 | 999久久久欧美日韩黑人 | 99视频在线免费播放 | 国产精品久久在线 | 国产糖心vlog在线观看 | 蜜桃视频精品 | 亚洲国产欧洲综合997久久, | www国产亚洲精品久久网站 | 又污又黄网站 | 欧美污在线观看 | 久久欧美综合 | 亚洲国产久 | 午夜国产在线 | 欧美在线18 | 麻豆视频在线看 | 国产不卡毛片 | 丁香婷婷综合五月 | 免费视频久久久久久久 | 99免费国产| 国产一线二线三线在线观看 | av资源网在线播放 | 成人黄色电影在线 | 国产91精品一区二区麻豆网站 | 亚洲黄色一级电影 | 高清久久久久久 | 在线观看网站你懂的 | 国产精选在线 | 国产精品大片在线观看 | 久久精品99国产国产 | 亚洲女人天堂成人av在线 | 亚洲精品成人av在线 | 四虎国产精品成人免费4hu | 欧美日韩国产在线精品 | 成人一区二区在线观看 | 国产精品精品国产婷婷这里av | 香蕉精品视频在线观看 | 日韩电影在线观看一区二区三区 | 天天夜夜狠狠操 | 日本精品久久久一区二区三区 | 国产精品永久在线观看 | 中文字幕最新精品 | 999免费视频| 欧美先锋影音 | 亚洲黄色成人网 | 精品久久久久久久久亚洲 | 毛片1000部免费看 | 91av视频网| 狠狠狠综合 | 91最新地址永久入口 | 中文字幕在线观 | 免费看的国产视频网站 | 亚洲天堂网在线播放 | 久久久999免费视频 日韩网站在线 | 欧美日韩色婷婷 | 亚洲视频综合在线 | 中文字幕成人av | 色.com| 在线观看中文字幕av | 成人黄色中文字幕 | 国产专区一 | 欧美精品视 | 国产中年夫妇高潮精品视频 | 波多野结衣在线中文字幕 | 国产小视频在线看 | 麻豆免费观看视频 | 亚洲精品美女在线 | 丁香综合网 | 这里只有精品视频在线观看 | 91成人国产| 国产拍揄自揄精品视频麻豆 | 免费看精品久久片 | 精品久久久久久久久久久院品网 | 成人毛片一区 | 国产福利91精品张津瑜 | 欧美二区在线播放 | 国产一区二区三区免费视频 | 国产99久久久国产 | 久久精品久久久久久久 | 2018好看的中文在线观看 | 国产96视频 | 亚洲va在线va天堂 | 久草视频中文 | 蜜臀av性久久久久蜜臀aⅴ流畅 | 黄色1级毛片 | 久久精品毛片 | 国产一级淫片免费看 | 高清av免费看 | 四虎小视频 | 国产男女免费完整视频 | 亚洲综合在线播放 | www.黄色片网站 | 97在线观看免费观看 | 国产精品美女在线 | 特黄特色特刺激视频免费播放 | 亚洲综合激情 | 丁香婷婷综合激情 | 在线观看日本高清mv视频 | 99精品视频精品精品视频 | 亚洲黄在线观看 | 欧美激情精品久久久久久变态 | 婷婷九月激情 | av不卡中文字幕 | 成年人国产在线观看 | 成人在线黄色电影 | 在线看国产精品 | 日韩小视频 | 在线免费观看的av | 91九色最新地址 | 91在线观看黄 | 最新一区二区三区 | 午夜精品一区二区三区在线播放 | 综合色中色 | 日本中文在线观看 | 看片的网址 | 国产精品久久久久久久久久了 | av网站免费看 | 在线看国产视频 | 久久久影院官网 | 日韩一区二区三区高清在线观看 | 91在线播放视频 | 色94色欧美| 中文字幕在线视频免费播放 | 中文字幕在线观看日本 | 五月天激情开心 | 久久亚洲精品国产亚洲老地址 | 在线看片中文字幕 | 国产精品一区二区你懂的 | 国产不卡在线观看视频 | 九月婷婷人人澡人人添人人爽 | 97在线视频观看 | 国产成人久久av977小说 | 麻豆视频在线 | 亚洲国产69 | 久操中文字幕在线观看 | 日韩性色| 涩涩网站在线看 | 天天操天天干天天玩 | 操操操com | 午夜精品影院 | 99精品国产99久久久久久福利 | 精品一区二区三区香蕉蜜桃 | 久久久久久久久久久国产精品 | 精品免费国产一区二区三区四区 | 久久久精品国产免费观看同学 | 久久国产精品99久久久久久丝袜 | 国产亚洲精品日韩在线tv黄 | 激情欧美网 | 麻豆传媒视频观看 | 99视频在线精品免费观看2 | 国产在线观看高清视频 | 色天堂在线视频 | 91爱爱网址 | 欧美日韩精品在线免费观看 | 热久久国产精品 | 四虎影视国产精品免费久久 | 久草免费手机视频 | 日韩精品久久久久久 | 久久av中文字幕片 | 国产亚洲成人网 | 丁香婷婷电影 | 视频91 | 欧美成人亚洲成人 | 少妇bbw揉bbb欧美 | 免费观看一级成人毛片 | 国产精品久久久久久久久久白浆 | 日韩在线视频网址 | 丁香五月缴情综合网 | 久久久99精品免费观看app | 欧美日韩免费网站 | 久久婷婷网 | 久久香蕉电影网 | www.亚洲精品视频 | 国产日韩欧美在线观看视频 | 久久夜色精品国产欧美一区麻豆 | 天天色天天 | 午夜视频在线观看一区二区三区 | 国产精品一级在线 | 国产精品午夜久久 | 麻豆成人精品视频 | 99精品久久久 | 国产一区二区在线免费 | 国产视频日韩视频欧美视频 | 天天操天天射天天爽 | 91精品国产乱码久久桃 | 国产视频二| 久久露脸国产精品 | 免费黄色特级片 | www国产亚洲精品久久麻豆 | 日本久久视频 | 成人禁用看黄a在线 | 久久久高清免费视频 | 免费国产黄线在线观看视频 | 999精品网| 在线观看理论 | 999久久久 | 国语自产偷拍精品视频偷 | 天天射狠狠干 | 97视频总站 | 在线观看www. | 国产91全国探花系列在线播放 | 亚洲黄色av一区 | 91精品1区 | 综合色站导航 | 日韩欧美高清一区二区三区 | 色偷偷人人澡久久超碰69 | 欧美韩国日本在线观看 | 色婷婷99 | 欧美日韩精品在线观看 | 97精品免费视频 | 精品国产aⅴ一区二区三区 在线直播av | 国产成人一区在线 | 久久国产亚洲精品 | 丁香在线观看完整电影视频 | 日日操天天操狠狠操 | 国产免费一区二区三区最新6 | 四虎影视精品永久在线观看 | 婷婷国产一区二区三区 | 国产丝袜| 国产123区在线观看 国产精品麻豆91 | 91精品一区国产高清在线gif | 在线观看岛国片 | 中文欧美字幕免费 | 美女久久视频 | 日本中文字幕在线一区 | 国产原创在线观看 | 美女免费黄网站 | 五月婷婷综合在线视频 | 91九色自拍 | 成人9ⅰ免费影视网站 | 久久久久伦理电影 | 国产一级高清 | 久久综合婷婷国产二区高清 | 成人在线视频免费看 | 在线观看视频黄色 | www.神马久久 | 久久久精品二区 | 亚洲,国产成人av | 91av蜜桃 | 国产在线观看免费观看 | 久久综合给合久久狠狠色 | 亚洲jizzjizz日本少妇 | 日韩在线视频一区二区三区 | 天堂在线视频免费观看 | 欧美性黄网官网 | 欧美视屏一区二区 | 人交video另类hd | 少妇按摩av | 免费看精品久久片 | 色多视频在线观看 | 久视频在线 | 日韩经典一区二区三区 | 国产精品久久久久久久久久久免费看 | 欧美日韩视频在线观看免费 | 人人澡人人草 | 成人在线免费视频观看 | 国产日韩欧美视频在线观看 | 国产精品久久久久久久妇 | 久久在线看 | 国产一区二区三区在线 | 日日干夜夜干 | 日本中文在线播放 | 黄色一级大片免费看 | 超碰97在线人人 | 在线看一区二区 | 精品久久久精品 | 国产韩国日本高清视频 | 99在线观看 | 午夜999 | 91精品久久久久久久99蜜桃 | 精品久久精品 | 久久九九免费视频 | 国产精品11 | 黄色在线观看网站 | 国产第一福利网 | 经典三级一区 | 久久天堂精品视频 | 国产视频在线观看免费 | 精品国产电影一区 | 久久精品人人做人人综合老师 | 九九视频精品免费 | 精品国产自 | 手机在线看永久av片免费 | 国产91精品欧美 | 欧美福利视频一区 | 亚洲免费永久精品国产 | 97在线视频免费播放 | 久久综合国产伦精品免费 | 精品久久精品久久 | 天天综合网入口 | 欧美日韩一区二区三区免费视频 | 91综合视频在线观看 | 国内精品久久久久影院优 | 麻豆视频国产精品 | 一本一道久久a久久精品蜜桃 | 亚洲国产经典视频 | 天天操天天舔天天干 | 久草在线久 | 香蕉久久国产 | 国产福利一区二区三区视频 | 久久精品网站免费观看 | 999久久久久久久久久久 | 制服丝袜在线 | 亚洲午夜精品久久久久久久久久久久 | 超碰在线观看99 | 综合天天色 | 午夜精品福利一区二区三区蜜桃 | 免费在线成人av | 青青河边草观看完整版高清 | 亚洲aⅴ在线观看 | 日韩精品久久中文字幕 | 色婷婷激情 | 91天堂素人约啪 | 久久1电影院 | 黄色片网站大全 | 天堂av在线中文在线 | 日韩最新av在线 | 国产成人黄色网址 | 欧美高清视频不卡网 | 国产黄色片免费看 | 97视频在线免费观看 | 91亚色免费视频 | 久久久久看片 | 久久久激情网 | 免费在线中文字幕 | 欧洲视频一区 | 中文字幕在线视频第一页 | 丁香在线观看完整电影视频 | 国产精品久久久久久久久久久杏吧 | 亚洲永久精品在线 | 国产中文字幕一区二区三区 | 久久精品1区 | 午夜av色 | 91字幕 | 91成人免费视频 | 亚洲蜜桃av | 最新av电影网址 | 国产系列精品av | 中文字幕乱码日本亚洲一区二区 | 亚洲人成精品久久久久 | 91精品一区二区三区蜜桃 | 在线视频一区二区 | 青草视频免费观看 | 在线天堂日本 | 韩日电影在线观看 | 欧美在线视频一区二区三区 | 国产99黄| 中文字幕高清免费日韩视频在线 | 又黄又刺激视频 | 西西大胆啪啪 | 欧美91在线| www国产亚洲精品久久麻豆 | 色偷偷av男人天堂 | 色婷婷激情电影 | 免费三级网 | 五月婷婷在线视频观看 | 国产精品一区二区在线观看 | 丝袜制服天堂 | 激情久久综合 | 成人app在线免费观看 | 久草精品视频 | 99久久精品国产亚洲 | 丁香激情五月婷婷 | 日韩网站在线 | 91精品国产麻豆国产自产影视 | 在线视频黄 | 国产无遮挡猛进猛出免费软件 | 国产99久久精品一区二区永久免费 | 天天干天天操天天 | 日日夜夜精品 | 久草在线综合网 | 国产精品久久久区三区天天噜 | 久久精品美女视频 | 欧美一级特黄aaaaaa大片在线观看 | 成人在线观看影院 | 久久人操| 99久久精品国产一区 | 成人一级免费视频 | 国产亚洲精品久久久久动 | 日韩精品一区二区三区视频播放 | 91亚洲狠狠婷婷综合久久久 | 国产aaa免费视频 | 久久五月激情 | 日韩av一卡二卡三卡 | 日韩午夜网站 | 国产视频每日更新 | 在线不卡的av | 一区三区视频 | 欧美伦理一区二区三区 | 经典三级一区 | 最近中文字幕完整高清 | 激情丁香综合 | 国产黄影院色大全免费 | 中文字幕91在线 | 日韩大片在线播放 | 国产理论影院 | 色婷婷综合成人av | av高清网站在线观看 | 激情婷婷欧美 | 一区 二区 精品 | 97超碰人人模人人人爽人人爱 | 色偷偷97 | 久久a级片 | 国产精品久久久久永久免费观看 | av中文字幕网 | 国内精品久久久久影院男同志 | 国产午夜精品一区 | 亚洲黄色片一级 | 啪啪精品 | 国产精品欧美 | 97成人在线观看视频 | 超碰人人干人人 | 成全免费观看视频 | 亚洲精品视频中文字幕 | 国产精品热视频 | 国产永久免费高清在线观看视频 | www黄色av | 亚洲精品99久久久久久 | 国产在线更新 | 人人爽人人干 | 97电影院网| 久久99国产精品免费网站 | 久久国产区 | 婷婷午夜 | 国产综合激情 | 国产一区网| 视频一区二区在线观看 | 中文字幕在线观看1 | 日韩在线播放欧美字幕 | 亚洲一区二区三区四区精品 | 国产午夜精品av一区二区 | 九九免费在线观看视频 | 日韩在线视频线视频免费网站 | 五月婷婷天堂 | 成人国产精品一区二区 | 9999精品免费视频 | av超碰在线 | 国产精品免费看 | 日韩视频图片 | 九九久久精品 | 在线观看www. | 欧美精品在线观看 | 色网站在线免费观看 | 综合精品久久久 | 在线免费观看黄网站 | 国产精彩视频 | 中文字幕有码在线播放 | 成年人免费电影 | 狠狠色丁香久久婷婷综合五月 | 婷婷国产一区二区三区 | 天天操比 | 国产视频在线免费 | 狠狠做六月爱婷婷综合aⅴ 日本高清免费中文字幕 | 视频精品一区二区三区 | 精品久久久久久久久久久院品网 | 国产精品久久久久久久免费 | 亚洲dvd| 日韩欧美视频一区二区 | 福利久久| 黄色三级网站在线观看 | 在线观看麻豆av | 在线观看免费版高清版 | 精品一区二区三区四区在线 | 国产高清成人在线 | 最新av网址在线观看 | 91av社区| 欧美亚洲另类在线视频 | 欧美另类高潮 | 天天操天天操天天 | 激情五月***国产精品 | 国产精品入口麻豆 | 日韩黄色av网站 | 亚洲精品久久久久中文字幕二区 | 激情偷乱人伦小说视频在线观看 | 西西444www高清大胆 | 日韩午夜电影网 | 日本在线中文 | 亚洲国产美女精品久久久久∴ | 欧美精品三级在线观看 | 又色又爽又黄高潮的免费视频 | 四虎免费在线观看视频 | 久射网| 手机色站| 国产青青青 | bbb搡bbb爽爽爽 | 欧美精品在线观看免费 | av在线免费播放网站 | 91麻豆精品国产自产在线游戏 | 日本午夜在线亚洲.国产 | 国产成人三级在线 | 91成人看片 | 特级西西www44高清大胆图片 | 国产男女无遮挡猛进猛出在线观看 | 一级片黄色片网站 | 99亚洲国产精品 | 91亚色视频在线观看 | 国色综合 | 国产精品成人av电影 | 亚洲电影久久久 | 黄污视频大全 | 狠狠色香婷婷久久亚洲精品 | 免费在线观看黄色网 | 91精品国产自产在线观看 | 国产一区电影在线观看 | 99r在线观看 | 日本公妇色中文字幕 | 久久成人精品电影 | 中文字幕在线观看av | 国产麻豆果冻传媒在线观看 | 久草在线视频免费资源观看 | 伊人狠狠干| 在线影院 国内精品 | 久久久午夜精品福利内容 | 青青网视频| 69久久夜色精品国产69 | 成人黄色中文字幕 | 丁香婷婷激情五月 | 久久在线一区 | 日韩字幕在线观看 | 欧美成人h版 | 狠狠色伊人亚洲综合网站野外 | 午夜av剧场 | 久99久精品视频免费观看 | 亚州av成人 | 天天操夜夜拍 | 国产精品国内免费一区二区三区 | 国产一区二区在线观看免费 | 日韩v在线 | 久久免费视频3 | 亚洲精品网址在线观看 | 久久艹欧美 | 国产精品人成电影在线观看 | 中文字幕在线看 | 国产成人一区二区三区久久精品 | 超碰在线观看av.com | 亚洲精品久久久久www | 国产精品久久久久久一区二区 | 欧美射射射| 国产 成人 久久 | 在线成人免费电影 | 天天综合亚洲 | 久久久久伦理电影 | 在线观看黄 | 欧美精品三级 | 九九在线播放 | 美女网站在线观看 | 9在线观看免费高清完整版 玖玖爱免费视频 | 精品一区二区亚洲 | 五月综合激情婷婷 | 成人黄色大片在线观看 | 国产一区二区午夜 | 五月婷婷视频在线观看 | 一区二区三区www | 日韩欧美在线综合网 | 日韩高清在线不卡 | 久久国产女人 | www.夜夜爱 | 国产盗摄精品一区二区 | 国产专区精品视频 | 久久精品a | 欧美综合久久 | 免费看黄在线观看 | 国产自制av| 97视频在线观看成人 | 国产裸体bbb视频 | 在线日本v二区不卡 | 日韩精品在线看 | 午夜美女影院 | 玖玖玖国产精品 | 黄色成人在线观看 | 国内精品久久久久久久久 | 精品免费久久久久久 | 久草视频国产 | 欧美黑人性爽 | 亚洲在线日韩 | 最近中文字幕完整高清 | 亚洲国产免费网站 | 久久国产精品免费一区 | 综合av在线 | 91看片一区二区三区 | 麻豆系列在线观看 | 日韩欧美高清一区二区三区 | 日本黄色大片免费看 | 91丨精品丨蝌蚪丨白丝jk | 精品久久国产一区 | 日本亚洲国产 | 久久久高清视频 | 色av网站| 四虎国产 | 久久久久国产成人精品亚洲午夜 | 久久久久免费精品视频 | 中文字幕在线观看的网站 | 亚洲精品视频免费 | 狠狠操操操 | 国产一区二区视频在线 | av在线电影免费观看 | 亚洲视频axxx | 五月婷婷一级片 | 黄色app网站在线观看 | 精品国产精品久久一区免费式 | 美女在线免费观看视频 | 激情综合网色播五月 | 99国产精品久久久久久久久久 | 色综合天天爱 | 国产精品原创视频 | 日韩精品在线看 | 国产九色91| 片黄色毛片黄色毛片 | 成人免费一级 | 天天射,天天干 | 波多野结衣一区二区三区中文字幕 | 91在线一区二区 | 在线观看不卡视频 | 日本中出在线观看 | 成人在线观看你懂的 | 中文字幕av全部资源www中文字幕在线观看 | 国产美女在线精品免费观看 | 网站在线观看日韩 | 中文字幕2021 | 欧美一区二区三区激情视频 | 亚洲天堂视频在线 | 精品国产一区二区三区久久久蜜月 | 人成午夜视频 | 成人禁用看黄a在线 | 婷婷国产v亚洲v欧美久久 | 久久久久久免费毛片精品 | 九九久久免费 | 麻豆久久久 | 人人看人人做人人澡 | 色综合久久久 | 亚洲成a人片77777kkkk1在线观看 | 亚洲午夜剧场 | 国产短视频在线播放 | 欧美亚洲国产精品久久高清浪潮 | 五月婷婷精品 | 日日摸日日碰 | 日韩精品一区二区三区水蜜桃 | 精品国产精品一区二区夜夜嗨 | 天天躁日日躁狠狠躁av中文 | 欧美日韩午夜在线 | 日本乱码在线 | 不卡的av在线| 国产精美视频 | 久久九精品 | 欧美日韩午夜爽爽 | 黄色一级在线免费观看 | 亚洲精品一区二区三区新线路 | 精品欧美在线视频 | 视频成人永久免费视频 | 久久激五月天综合精品 | 久久成人国产精品 | 午夜私人影院 | 免费一级日韩欧美性大片 | 一区二区三区高清在线 | 国产原创中文在线 | 成人免费观看完整版电影 | 999久久国产精品免费观看网站 | 中文字幕在线观看免费高清电影 | www国产亚洲精品久久网站 | 免费看一级一片 | 国产aa免费视频 | 91精品久久久久久久91蜜桃 | adn—256中文在线观看 | 黄色片免费看 | 日韩a免费 | 超碰97中文| 国产精品久久久久久久久久久久冷 | 亚洲少妇xxxx | 丁香六月婷| 国产在线小视频 | 国产亚洲精品精品精品 | 人人爽人人爽人人爽人人爽 | 欧美日韩视频在线一区 | 亚洲区色 | 麻豆成人小视频 | 黄色一级动作片 | 亚洲国产一区av | 在线观看一区 | 在线观看韩国av | 在线观看av不卡 | 操夜夜操 | 视频一区亚洲 | 日韩精品最新在线观看 | 久久久久国产精品免费网站 | 欧美在线视频一区二区三区 | 国产精品theporn | 成人久久影院 | av电影在线观看 | 亚洲精品久久久久www | 黄色网址中文字幕 | 中文一区二区三区在线观看 | 久久精品视频网站 | 日韩电影一区二区三区 | 亚洲午夜久久久久久久久 | 黄色毛片视频免费观看中文 | 99中文字幕在线观看 | 久久久久国产一区二区 | 最近中文字幕免费视频 | 500部大龄熟乱视频使用方法 | 国产亚洲一区二区三区 | 操操操日日日 | 黄网av在线| 日韩精品一区二区三区高清免费 | 在线观看国产www | 菠萝菠萝蜜在线播放 | 精品在线播放 | 国产视频一区二区在线观看 | 欧美性爽爽 | 午夜久久久影院 | 久久99欧美| 99re中文字幕 | 欧美日韩在线第一页 | 精品欧美小视频在线观看 | 麻花豆传媒一二三产区 | 日韩精品一区二区三区视频播放 | 97在线观看免费高清完整版在线观看 | 98涩涩国产露脸精品国产网 | 婷婷综合在线 | 精品国产免费人成在线观看 | 亚洲黄色一级视频 | 欧美精品亚洲精品日韩精品 | 成+人+色综合 | 一区二区三区视频 | 999成人 | 色综合中文综合网 | 不卡av免费在线观看 | 人人干干人人 | 成人黄色电影免费观看 | 狠狠色伊人亚洲综合网站色 | 欧美久久久影院 | 中文字幕av全部资源www中文字幕在线观看 | 人人爱人人舔 | www激情久久| 九九av | 国产精品久久久久久久久婷婷 | 国产精品一区二区av麻豆 | 成人av网站在线观看 | 91精品国产自产在线观看 | 日韩精品中文字幕在线 | 亚洲成人资源网 | a国产精品 | 国产精品永久在线 | 国产精品久久久久久久久久 |