- wxs 使用replace 替换括号失败
例子:<view id="{{aData.subtableText('a[b]')}}"></view> <wxs module="aData"> module.exports = { subtableText: function (text) { var value = text if (value.indexOf('[') != -1) { var reg = getRegExp('[', 'g') value = value.replace(reg, ''); } return value }, } </wxs> [图片]
2021-10-14 - request数据返回格式错误
[图片] wx:request 通过post返回数据 ,在微信开发者工具中显示的数据出现错误
2019-11-29 - showToast
wx.showToast({ title: '请输入', icon:'warn', duration: 2000 }) 更改icon无效
2019-11-25 - input
data: { inputValue:'' }, bindKeyInput: function (e) { this.setData({ inputValue: e.detail.value }) }, <input class="weui-input" maxlength="10" bindinput="bindKeyInput" placeholder="请输入"/> 无法更改inputValue的值,并且打印不出inputValuet的值
2019-11-25