写个全局过滤器测试一下就可以了。
- 发布:2021-03-12 10:14
- 更新:2021-03-19 15:13
- 阅读:468
产品分类: uniapp/小程序/百度
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: win10
HBuilderX类型: 正式
HBuilderX版本号: 3.1.4
第三方开发者工具版本号: 3.25.1
基础库版本号: 3.260
项目创建方式: HBuilderX
操作步骤:
预期结果:
正常渲染
正常渲染
实际结果:
许安然处undefined
许安然处undefined
bug描述:
全局过滤器
Vue.filter('priceFormat', (price, fixed=0)=>{
if(!price || isNaN(price)){
return 0
}
return fixed > 0 ? parseFloat(price).toFixed(fixed) : parseFloat(price).toFixed(2);
})
<view class="price-cls">价格:{{price | priceFormat}}</view>
全局过滤器可以进去,但是渲染出来是undefined。 百度基础调试库调低版本到3.250 只下 是可以正常渲染的。