国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Vue編譯器源碼分析compileToFunctions作用詳解

3403771864 / 536人閱讀

  這篇文章主要講述compileToFunctions的作用。

  我們現在就compileToFunctions 的真弄明白為什么要弄的這么復雜?現在我們看看下面完整代碼。

  compileToFunctions是如何把模板字符串template編譯成渲染函數render的。

  Vue.prototype.$mount函數體

  回歸到Vue.prototype.$mount函數體內。

</>復制代碼

  1.   var ref = compileToFunctions(template, {
  2.   shouldDecodeNewlines: shouldDecodeNewlines,
  3.   shouldDecodeNewlinesForHref: shouldDecodeNewlinesForHref,
  4.   delimitersoptions.delimiters,
  5.   commentsoptions.comments
  6.   }, th

is);

  在上面可以看出,在此傳遞給compileToFunctions的第一個參數就是模板字符串template,而第二個參數則是一個配置選項options。

  先說說這些配置選項中的屬性!

  shouldDecodeNewlines

  源碼出處

</>復制代碼

  1.   // check whether current browser encodes a char inside attribute values
  2.   var div;
  3.   function getShouldDecode(href{
  4.   div = div || document.createElement('div');
  5.   div.innerHTML = href ? "<a href=\"\n\"/>" : "<div a=\"\n\"/>";
  6.   return div.innerHTML.indexOf('&#10;') > 0
  7.   }
  8.   // #3663: IE encodes newlines inside attribute values while other browsers don't
  9.   var shouldDecodeNewlines = inBrowser ? getShouldDecode(false) : false;
  10.   // #6828: chrome encodes content in a[href]
  11.   var shouldDecodeNewlinesForHref = inBrowser ? getShouldDecode(true) : false;

  上面代碼想表達什么?

  其實大致表達是在我們innerHTML獲取內容時,換行符和制表符則轉化成&#10和&#9。在IE瀏覽器中,這個將不會成為問題。

  但這會對Vue的編譯器在對模板進行編譯后的結果有影響,如何不出現這就要Vue需要知道在什么時候要做兼容工作,如果 shouldDecodeNewlines 為 true,意味著 Vue 在編譯模板的時候,要對屬性值中的換行符或制表符做兼容處理。而shouldDecodeNewlinesForHref為true 意味著Vue在編譯模板的時候,要對a標簽的 href 屬性值中的換行符或制表符做兼容處理。

  options.delimiters & options.comments

  兩者都是當前Vue實例的$options屬性,并且delimiters和comments都是 Vue 提供的選項。

1.jpg

2.jpg

  現在我們已經搞清楚了這些配置選項是什么意思,那接下來我們把目光放在《Vue編譯器源碼分析(二)》針對compileToFunctions函數逐行分析。

  compileToFunctions函數逐行分析

</>復制代碼

  1.   function createCompileToFunctionFn(compile{
  2.   var cache = Object.create(null);
  3.   return function compileToFunctions(
  4.   template,
  5.   options,
  6.   vm
  7.   ) {
  8.   options = extend({}, options);
  9.   var warn$$1 = options.warn || warn;
  10.   delete options.warn;
  11.   /* istanbul ignore if */
  12.   {
  13.   // detect possible CSP restriction
  14.   try {
  15.   new Function('return 1');
  16.   } catch (e) {
  17.   if (e.toString().match(/unsafe-eval|CSP/)) {
  18.   warn$$1(
  19.   'It seems you are using the standalone build of Vue.js in an ' +
  20.   'environment with Content Security Policy that prohibits unsafe-eval. ' +
  21.   'The template compiler cannot work in this environment. Consider ' +
  22.   'relaxing the policy to allow unsafe-eval or pre-compiling your ' +
  23.   'templates into render functions.'
  24.   );
  25.   }
  26.   }
  27.   }
  28.   // check cache
  29.   var key = options.delimiters ?
  30.   String(options.delimiters) + template :
  31.   template;
  32.   if (cache[key]) {
  33.   return cache[key]
  34.   }
  35.   // compile
  36.   var compiled = compile(template, options);
  37.   // check compilation errors/tips
  38.   {
  39.   if (compiled.errors && compiled.errors.length) {
  40.   warn$$1(
  41.   "Error compiling template:\n\n" + template + "\n\n" +
  42.   compiled.errors.map(function(e{
  43.   return ("- " + e);
  44.   }).join('\n') + '\n',
  45.   vm
  46.   );
  47.   }
  48.   if (compiled.tips && compiled.tips.length) {
  49.   compiled.tips.forEach(function(msg) {
  50.   return tip(msg, vm);
  51.   });
  52.   }
  53.   }
  54.   // turn code into functions
  55.   var res = {};
  56.   var fnGenErrors = [];
  57.   res.render = createFunction(compiled.render, fnGenErrors);
  58.   res.staticRenderFns = compiled.staticRenderFns.map(function(code{
  59.   return createFunction(code, fnGenErrors)
  60.   });
  61.   // check function generation errors.
  62.   // this should only happen if there is a bug in the compiler itself.
  63.   // mostly for codegen development use
  64.   /* istanbul ignore if */
  65.   {
  66.   if ((!compiled.errors || !compiled.errors.length) && fnGenErrors.length) {
  67.   warn$$1(
  68.   "Failed to generate render function:\n\n" +
  69.   fnGenErrors.map(function(ref{
  70.   var err = ref.err;
  71.   var code = ref.code;
  72.   return ((err.toString()) + " in\n\n" + code + "\n");
  73.   }).join('\n'),
  74.   vm
  75.   );
  76.   }
  77.   }
  78.   return (cache[key] = res)
  79.   }
  80.   }

  注意compileToFunctions函數是接收三個參數的,第三個參數是當前Vue實例。

  首先:

</>復制代碼

  1.   options = extend({}, options);
  2.   var warn$$1 = options.warn || warn;
  3.   delete options.warn;

  通過extend 把 options 配置對象上的屬性擴展一份到新對象上,定義warn$$1變量。warn是一個錯誤信息提示的函數。

  接下來:

</>復制代碼

  1.   // detect possible CSP restriction
  2.   try {
  3.   new Function('return 1');
  4.   } catch (e) {
  5.   if (e.toString().match(/unsafe-eval|CSP/)) {
  6.   warn$$1(
  7.   'It seems you are using the standalone build of Vue.js in an ' +
  8.   'environment with Content Security Policy that prohibits unsafe-eval. ' +
  9.   'The template compiler cannot work in this environment. Consider ' +
  10.   'relaxing the policy to allow unsafe-eval or pre-compiling your ' +
  11.   'templates into render functions.'
  12.   );
  13.   }
  14.   }

  上面代碼體現出語句問題就是使用 try catch 語句塊對 new Function('return 1') 這句代碼進行錯誤捕獲,如果有錯誤發生且錯誤的內容中包含如 'unsafe-eval' 或者 'CSP' 這些字樣的信息時就會給出一個警告。

  CSP全稱Content Security Policy ,內容安全策略,為了頁面內容安全而制定的一系列防護策略. 通過CSP所約束的的規責指定可信的內容來源(這里的內容可以指腳本、圖片、iframe、fton、style等等可能的遠程的資源)。通過CSP協定,讓WEB處于一個安全的運行環境中。

  由于new Function() 被影響到,因此不可以使用。但是將模板字符串編譯成渲染函數又依賴new Function(),所以解決方案有兩個:

  1、放寬你的CSP策略

  2、預編譯

  這段代碼的作用就是檢測 new Function() 是否可用,并在某些極端情況下給你一個有用的提示。

  接下來是:

</>復制代碼

  1.   var key = options.delimiters ?
  2.   String(options.delimiters) + template :
  3.   template;
  4.   if (cache[key]) {
  5.   return cache[key]
  6.   }

  options.delimiters這個選項是改變純文本插入分隔符,如果options.delimiters存在,則使用String 方法將其轉換成字符串并與 template 拼接作為 key 的值,否則直接使用 template 字符串作為 key 的值,然后判斷 cache[key] 是否存在,如果存在直接返回cache[key]。

  這么做的目的是緩存字符串模板的編譯結果,防止重復編譯,提升性能,我們再看一下compileToFunctions函數的最后一句代碼:

</>復制代碼

  1.   return (cache[key] = res)

  這句代碼在返回編譯結果的同時,將結果緩存,這樣下一次發現如果 cache 中存在相同的 key則不需要再次編譯,直接使用緩存的結果就可以了。

  接下來:

 

</>復制代碼

  1.  // compile
  2.   var compiled = compile(template, options);
  3.   // check compilation errors/tips
  4.   if (compiled.errors && compiled.errors.length) {
  5.   warn$$1(
  6.   "Error compiling template:\n\n" + template + "\n\n" +
  7.   compiled.errors.map(function(e{
  8.   return ("- " + e);
  9.   }).join('\n') + '\n',
  10.   vm
  11.   );
  12.   }
  13.   if (compiled.tips && compiled.tips.length) {
  14.   compiled.tips.forEach(function(msg) {
  15.   return tip(msg, vm);
  16.   });
  17.   }
  18.   }

  compile 是引用了來自 createCompileToFunctionFn 函數的形參稍后會重點來介紹它。

  在使用 compile 函數對模板進行編譯后會返回一個結果 compiled,返回結果 compiled 是一個對象且這個對象可能包含兩個屬性 errors 和 tips 。這兩個屬性分別包含了編譯過程中的錯誤和提示信息。所以上面那段代碼的作用就是用來檢查使用 compile 對模板進行編譯的過程中是否存在錯誤和提示的,如果存在那么需要將其打印出來。

  接下來:

</>復制代碼

  1.   // turn code into functions
  2.   var res = {};
  3.   var fnGenErrors = [];
  4.   res.render = createFunction(compiled.render, fnGenErrors);
  5.   res.staticRenderFns = compiled.staticRenderFns.map(function(code{
  6.   return createFunction(code, fnGenErrors)
  7.   });

  res 是一個空對象且它是最終的返回值,fnGenErrors 是一個空數組。

  在 res 對象上添加一個 render 屬性,這個 render 屬性,就是最終生成的渲染函數,它的值是通過 createFunction 創建出來的。

  createFunction 函數源碼

</>復制代碼

  1.   function createFunction(code, errors{
  2.   try {
  3.   return new Function(code)
  4.   } catch (err) {
  5.   errors.push({
  6.   err: err,
  7.   code: code
  8.   });
  9.   return noop
  10.   }
  11.   }

  createFunction 函數接收兩個參數,第一個參數 code 為函數體字符串,該字符串將通過new Function(code) 的方式創建為函數。

  第二個參數 errors 是一個數組,作用是當采用 new Function(code) 創建函數發生錯誤時用來收集錯誤的。

  已知,傳遞給 createFunction 函數的第一個參數是 compiled.render,所以 compiled.render 應該是一個函數體字符串,且我們知道 compiled 是 compile 函數的返回值,這說明:compile函數編譯模板字符串后所得到的是字符串形式的函數體。

  傳遞給 createFunction 函數的第二個參數是之前聲明的 fnGenErrors 常量,也就是說當創建函數出錯時的錯誤信息被 push 到這個數組里了。

  在這句代碼之后,又在 res 對象上添加了 staticRenderFns 屬性:

</>復制代碼

  1.   res.staticRenderFns = compiled.staticRenderFns.map(function(code{
  2.   return createFunction(code, fnGenErrors)
  3.   });

  由這段代碼可知 res.staticRenderFns 是一個函數數組,是通過對compiled.staticRenderFns遍歷生成的,這說明:compiled 除了包含 render 字符串外,還包含一個字符串數組staticRenderFns ,且這個字符串數組最終也通過 createFunction 轉為函數。staticRenderFns 的主要作用是渲染優化,我們后面詳細講解。

  最后的代碼:

</>復制代碼

  1.   // check function generation errors.
  2.   // this should only happen if there is a bug in the compiler itself.
  3.   // mostly for codegen development use
  4.   /* istanbul ignore if */
  5.   if ((!compiled.errors || !compiled.errors.length) && fnGenErrors.length) {
  6.   warn$$1(
  7.   "Failed to generate render function:\n\n" +
  8.   fnGenErrors.map(function(ref{
  9.   var err = ref.err;
  10.   var code = ref.code;
  11.   return ((err.toString()) + " in\n\n" + code + "\n");
  12.   }).join('\n'),
  13.   vm
  14.   );
  15.   }
  16.   return (cache[key] = res)

  上面代碼主要是渲染函數過程在打印中的錯誤,且同時將結果村存儲下來,接下來我們講講compile 的作用。


文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/127790.html

相關文章

  • Vue原理】Compile - 源碼版 之 從新建實例到 compile結束的主要流程

    摘要:頁面這個實例,按理就需要解析兩次,但是有緩存之后就不會理清思路也就是說,其實內核就是不過是經過了兩波包裝的第一波包裝在中的內部函數中內部函數的作用是合并公共和自定義,但是相關代碼已經省略,另一個就是執行第二波包裝在中,目的是進行緩存 寫文章不容易,點個贊唄兄弟 專注 Vue 源碼分享,文章分為白話版和 源碼版,白話版助于理解工作原理,源碼版助于了解內部詳情,讓我們一起學習吧研究基于 ...

    CODING 評論0 收藏0
  • 聊聊Vue.js的template編譯

    摘要:具體可以查看抽象語法樹。而則是帶緩存的編譯器,同時以及函數會被轉換成對象。會用正則等方式解析模板中的指令等數據,形成語法樹。是將語法樹轉化成字符串的過程,得到結果是的字符串以及字符串。里面的節點與父節點的結構類似,層層往下形成一棵語法樹。 寫在前面 因為對Vue.js很感興趣,而且平時工作的技術棧也是Vue.js,這幾個月花了些時間研究學習了一下Vue.js源碼,并做了總結與輸出。 文...

    gnehc 評論0 收藏0
  • vue源碼閱讀之數據渲染過程

    摘要:圖在中應用三數據渲染過程數據綁定實現邏輯本節正式分析從到數據渲染到頁面的過程,在中定義了一個的構造函數。一、概述 vue已是目前國內前端web端三分天下之一,也是工作中主要技術棧之一。在日常使用中知其然也好奇著所以然,因此嘗試閱讀vue源碼并進行總結。本文旨在梳理初始化頁面時data中的數據是如何渲染到頁面上的。本文將帶著這個疑問一點點追究vue的思路。總體來說vue模版渲染大致流程如圖1所...

    AlphaGooo 評論0 收藏0
  • Vue編程三部曲之將template編譯成AST示例詳解

      知道嗎?Vue.js 有 2 個版本,一個是Runtime + Compiler版本,另一個是Runtime only版本。Runtime + Compiler版本是包含編譯代碼的,簡單來說就是Runtime only版本不包含編譯代碼的,在運行時候,需要借助 webpack 的 vue-loader 事先把模板編譯成 render 函數。  假如在你需要在客戶端編譯模板 (比如傳入一個字符串...

    3403771864 評論0 收藏0
  • vue源碼分析系列之入口文件分析

    摘要:中引入了中的中引入了中的中,定義了的構造函數中的原型上掛載了方法,用來做初始化原型上掛載的屬性描述符,返回原型上掛載的屬性描述符返回原型上掛載與方法,用來為對象新增刪除響應式屬性原型上掛載方法原型上掛載事件相關的方法。 入口尋找 入口platforms/web/entry-runtime-with-compiler中import了./runtime/index導出的vue。 ./r...

    kgbook 評論0 收藏0

發表評論

0條評論

3403771864

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<