vue组件中的反斜杠作用
正常情况下:var htmlString = '<div>this is a string</div>';下面写法是不对的var htmlString = '<div>this is a string</div>';但是一些时候我们希望像上面这种写法,可读性更高所以要进行转义处理var
·
正常情况下:
var htmlString = '<div>this is a string</div>';
下面写法是不对的
var htmlString = '<div>
this is a string
</div>';
但是一些时候我们希望像上面这种写法,可读性更高
所以要进行转义处理
var htmlString = '<div>\
this is a string\
</div>';
引用官方的话
上述的这个和一些接下来的示例使用了 JavaScript 的模板字符串来让多行的模板更易读。它们在 IE 下并没有被支持,所以如果你需要在不 (经过 Babel 或 TypeScript 之类的工具) 编译的情况下支持 IE,请使用折行转义字符取而代之。
更多推荐
已为社区贡献7条内容
所有评论(0)