Posted in Javascript onSeptember 03, 2020
vue源码中编译部分有下面一段代码,里面用到了with:
export function generate ( ast: ASTElement | void, options: CompilerOptions ): CodegenResult { const state = new CodegenState(options) const code = ast ? genElement(ast, state) : '_c("div")' return { render: `with(this){return $[code]}`, staticRenderFns: state.staticRenderFns } }
下面详细解释一下with的用法:
js中我们常用的一种类型是对象:
let obj = { a:"aa", b:"bb", c:"cc" }
而提到对象,我们要获取它中的属性值,可以使用如下方法:
// 一: let a = obj.a //二: let b = ojb["b"]
取出对象中的每一个属性值,我们都需要obj....,这样无形中会输入很多次obj,那么我们如何简单的获取到它的属性值呢。
1、常规的方法:
var a = obj.a;
var b = obj.b;
var c = obj.c;
2、使用with后的方法:
with(obj){ var a = a; var b = b; var c = c; }
这里with括号中的值就是我们的公共对象,下面就是每个对象中的值
var qs1 = location.search.substring(1); var hostname1 = location.hostname; var url1 = location.href; // 上面几行代码都包含了location对象,可使用with语句简写为以下形式 with(location){ var qs2 = search.substring(1); var hostname2 = hostname; var url2 = href; }
只要无疑会大大提高我们的效率。
但是凡事都有利弊,我们也不得不提提with的缺点:
由于大量使用with语句会导致性能下降,同时也会给调试代码造成困难,因此在开发大型应用程序时,不建议使用with语句
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。
Vue js with语句原理及用法解析
- Author -
vickylinj声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@