在我的vue组件js代码中,我收到了这个错误:
未捕获的SyntaxError:无效或意外的令牌
这是我的代码:
Vue.component('pickpoint-info', {
template : '<table>\ // in this line I get the error
<tbody>\
<tr v-for="item in items" v-on:click="selectPickPoint(this)">\
<td width="50" align="center"><input name="pickpointid" type="radio" value="{{ item.customer_id }}"></td>\
<td width="300">\
<b>{{ item.name }}</b> <i style="font-size:9px;">#{{ item.customer_id }}</i>\
<br>\
{{ item.address }}\
<br>\
{{ item.postal_code }}\
<a href="{{ item.map_link }}" target="_blank" style="font-size:10px;">(ver en el mapa</a>)\
</td>\
</tr>\
</tbody>\
</table>\
',
此代码有什么问题?
答案 0 :(得分:6)
你必须写反引号,而不是简单的引号'
答案 1 :(得分:0)
尽量避免使用字符串作为模板,而是使用HTML 5
模板标记并引用它:
<template id="my-template">
<table> in this line I get the error
<tbody>
<tr v-for="item in items" v-on:click="selectPickPoint(this)">
<td width="50" align="center">
<input name="pickpointid" type="radio" value="{{ item.customer_id }}">
</td>
<td width="300">
<b>{{ item.name }}</b> <i style="font-size:9px;">#{{ item.customer_id }}</i>
<br> {{ item.address }}
<br> {{ item.postal_code }}
<a href="{{ item.map_link }}" target="_blank" style="font-size:10px;">(ver en el mapa</a>)
</td>
</tr>
</tbody>
</table>
</template>
然后您可以通过id
:
Vue.component('pickpoint-info', {
template: "#my-template"
});
如果你想使用一个字符串然后检查你的行的末尾并确保反斜杠后面没有空格,我认为你的错误在于这两行:
{{ item.address }}\
<br>\
两者都需要删除whitespace
。
答案 2 :(得分:0)
要编写反引号,可以检查此链接examples on different keyboards
在我的情况下(使用qwertz键盘)是“ Alt Gr” +“ 7”(也许您需要按两次)。