为了账号安全,请及时绑定邮箱和手机立即绑定

vue 中使用v-text绑定数据时使用过滤器报错,使用{{}}不报错。

vue 中使用v-text绑定数据时使用过滤器报错,使用{{}}不报错。

luchen_1991 2018-01-14 17:13:57
<div class="item-total">                                Item total: <span class="total-price" v-text="totalPrice | unitFilter2('元')"></span></div>这样写报“unitFilter2 is not defined”<div class="item-total">                                Item total: <span class="total-price">{{totalPrice | unitFilter2('元')}}</span></div>这样写正确但我在网上查询说{{}}是v-text的简写,这是什么原因呢?
查看完整描述

1 回答

?
kevinZee

TA贡献50条经验 获得超39个赞

错误和v-text无关,是vue2.0不让在插值表达式和v-bind外的地方使用管道。

Filters can now only be used inside text interpolations ({{}} tags). 
In the past we've found using filters with directives such as v-model, v-on etc. 
led to more complexity than convenience, and for list filtering on v-for
it is more appropriate to move that logic into JavaScript as computed properties.


查看完整回答
1 反对 回复 2018-01-14
  • 1 回答
  • 0 关注
  • 2704 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信