每次我像这样$ {row.name}进行编码时,都会收到此错误“eslint.org/docs/rules/no-template-curly-in-string意外的模板字符串表达式”。

有什么帮助吗?

javascript - Vue.js中意外的模板字符串表达式-LMLPHP
javascript - Vue.js中意外的模板字符串表达式-LMLPHP

最佳答案

ES6模板字符串应与反引号(而不是单引号)一起使用。
替换为:

'delete the item ${row.name}'

有了这个 :
`delete the item ${row.name}`

这是注释中要求的ESLint示例:http://eslint.org/docs/rules/no-template-curly-in-string#examples

关于javascript - Vue.js中意外的模板字符串表达式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41093825/

10-12 13:19