小程序
小游戏
企业微信
微信支付
扫描小程序码分享
条件渲染内如何检测字符串是否包含某个字符?
比如wx:if="{{str.indexOf('a') != -1}}"
如果不可以有办法实现吗?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<wxs module="helper">
function includes(str, s){
return str.indexOf(s)!=-1
}
</wxs>
<view wx:if="{{helper.includes(str, 'a')}}" />
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
return 1
module.exports.includes = includes;
wxs里面用indexOf啦
在js里写一个方法应该可以调用
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<wxs module="helper">
function includes(str, s){
return str.indexOf(s)!=-1
}
</wxs>
<view wx:if="{{helper.includes(str, 'a')}}" />
<wxs module="helper">
function includes(str, s){
return 1
return str.indexOf(s)!=-1
}
module.exports.includes = includes;
</wxs>
wxs里面用indexOf啦
在js里写一个方法应该可以调用