Vue输出解析模板生成的AST

1、修改源代码

在输出结果中赋值compiled.ast

即在createCompileToFunction函数返回的函数compileToFunctions中添加 

function createCompileToFunctionFn(compile) {
      var cache = Object.create(null);
      return function compileToFunctions(template, options, vm) {
          options = extend({}, options);
          var warn = options.warn || warn$2;
          delete options.warn;
          /* istanbul ignore if */
          {
              // detect possible CSP restriction
              try {
                  new Function('return 1');
              }
              catch (e) {
                  if (e.toString().match(/unsafe-eval|CSP/)) {
                      warn('It seems you are using the standalone build of Vue.js in an ' +
                          'environment with Content Security Policy that prohibits unsafe-eval. ' +
                          'The template compiler cannot work in this environment. Consider ' +
                          'relaxing the policy to allow unsafe-eval or pre-compiling your ' +
                          'templates into render functions.');
                  }
              }
          }
          // check cache
          var key = options.delimiters
              ? String(options.delimiters) + template
              : template;
          if (cache[key]) {
              return cache[key];
          }
          // compile
          var compiled = compile(template, options);
          // check compilation errors/tips
          {
              if (compiled.errors && compiled.errors.length) {
                  if (options.outputSourceRange) {
                      compiled.errors.forEach(function (e) {
                          warn("Error compiling template:\n\n".concat(e.msg, "\n\n") +
                              generateCodeFrame(template, e.start, e.end), vm);
                      });
                  }
                  else {
                      warn("Error compiling template:\n\n".concat(template, "\n\n") +
                          compiled.errors.map(function (e) { return "- ".concat(e); }).join('\n') +
                          '\n', vm);
                  }
              }
              if (compiled.tips && compiled.tips.length) {
                  if (options.outputSourceRange) {
                      compiled.tips.forEach(function (e) { return tip(e.msg, vm); });
                  }
                  else {
                      compiled.tips.forEach(function (msg) { return tip(msg, vm); });
                  }
              }
          }
          // turn code into functions
          var res = {};
          var fnGenErrors = [];
          res.render = createFunction(compiled.render, fnGenErrors);
          res.ast = compiled.ast;
          res.staticRenderFns = compiled.staticRenderFns.map(function (code) {
              return createFunction(code, fnGenErrors);
          });
          // check function generation errors.
          // this should only happen if there is a bug in the compiler itself.
          // mostly for codegen development use
          /* istanbul ignore if */
          {
              if ((!compiled.errors || !compiled.errors.length) && fnGenErrors.length) {
                  warn("Failed to generate render function:\n\n" +
                      fnGenErrors
                          .map(function (_a) {
                          var err = _a.err, code = _a.code;
                          return "".concat(err.toString(), " in\n\n").concat(code, "\n");
                      })
                          .join('\n'), vm);
              }
          }
          return (cache[key] = res);
      };
  }

 详细代码参考:

https://github.com/wuli2496/OJ/blob/master/vue/vue.js

2、在浏览器控制台上用json输出ast

由于ast中的parent会存在循环依赖问题,如果需要输出json形式,可以使用如下代码:

var cache = [];
var str = JSON.stringify(result.ast, function(key, value) {
   if (typeof value === 'object' && value !== null) {
	   if (cache.indexOf(value) !== -1) {
		   // Circular reference found, discard key
		   return;
	   }
	   // Store value in our collection
	   cache.push(value);
   }
   return value;
});
cache = null; // Enable garbage collection

其中result是调用Vue.compile(template)返回的结果

以template为例

    <div id="app">
        <ul>
            <li v-for="book in books">{{book.name}}</li>
        </ul>
    </div>

 输出结果为

{
    "type":1,
    "tag":"div",
    "attrsList":[
        {
            "name":"id",
            "value":"app"
        }
    ],
    "attrsMap":{
        "id":"app"
    },
    "rawAttrsMap":{

    },
    "children":[
        {
            "type":1,
            "tag":"ul",
            "attrsList":[

            ],
            "attrsMap":{

            },
            "rawAttrsMap":{

            },
            "children":[
                {
                    "type":1,
                    "tag":"li",
                    "attrsList":[

                    ],
                    "attrsMap":{
                        "v-for":"book in books"
                    },
                    "rawAttrsMap":{

                    },
                    "children":[
                        {
                            "type":2,
                            "expression":"_s(book.name)",
                            "tokens":[
                                {
                                    "@binding":"book.name"
                                }
                            ],
                            "text":"{{book.name}}",
                            "static":false
                        }
                    ],
                    "for":"books",
                    "alias":"book",
                    "plain":true,
                    "static":false,
                    "staticRoot":false,
                    "forProcessed":true
                }
            ],
            "plain":true,
            "static":false,
            "staticRoot":false
        }
    ],
    "plain":false,
    "attrs":[
        {
            "name":"id",
            "value":"\"app\""
        }
    ],
    "static":false,
    "staticRoot":false
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

kgduu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值