与Vue冲突的写法
在字符串模板中,比如 Handlebars,我们得像这样写一个条件块:
<!-- Handlebars 模板 --> |
错误信息:
[ERROR]-[Thread: qtp1418334255-30]-[com.jfinal.core.ActionHandler.handle()]: /admin/brand
com.jfinal.template.stat.ParseException: #if directive requires parentheses "()"
Template: "/_view/_admin/brand/list.html". Line: 40
要不要处理这种?难道只能用vue另外一种if判断呢?
jquery和Freemarker Velocity也经常冲突,“$”。
这种情况下,后端模版中用jQuery代替$。
---------------------
正确的不与JFina冲突的vue if 判断
<tbody id="bodyHolder">
<tr v-for="item in page.list" class="formatTrCss({rowIndex})" >
<td>{{item.logo}}</td>
<td><span v-if="item.company">{{item.company.name}}</span></td>
<i-Button type="primary" @click="showDialog2">添加品牌2</i-Button></td>
</tr>
</tbody>
项目:JFinal