我在使用wxml的时候 {{item.content}} 指定数据绑定:
<block wx:for="{{dataSource}}" wx:for-item="item" wx:for-index="index" wx:key="id">
<collapse-item title="《{{item.title}》" name="{{index}}">
{{item.content}}
</collapse-item>
</block>
得到结果:
可是这里有很多 \\\ 这些无用字符,我想在小程序中去除掉。请问有什么方法实现呢?
比如是否有模板函数类似方法,直接类似 {{delete_character_func(item.content)}} 这样去除掉这些字符。
可以写wxs文件,然后在wxml里import之后调用,详情见https://developers.weixin.qq.com/miniprogram/dev/reference/wxs/