好的 谢谢
电脑微信打开小程序wx.getFuzzyLocation调不起来,手机可访问?电脑微信打开小程序wx.getFuzzyLocation调不起来,手机可访问
2023-02-27引用的是vant weapp 组件 但是会经常出现报错的问题 重启开发者工具后就好了 这是开发者工具的原因还是组件原有的原因呢
define和require报错?版本:1.0.3 经常报define和require错误 [图片] [图片]
2021-01-15补充:截图是数组渲染后的结果。数组值是1,3,4,5,7,''。渲染结果明显不对。我试了多次
wxml渲染数组 数组删除元素 wxml显示错误<block wx:for="{{labels}}" wx:key="{{index}}"> <input maxlength="{{maxlength}}" placeholder="{{placeholder}}" placeholder-class="fontsize-20 font-color" class="orange font-color" data-index="{{index}}" bindinput="input"/> </block> data:{ saying:"", labels:[""] //输入标签 最多8个 }, mmethods:{ input:function(e){ let labels=this.data.labels const label=lrtrim(e.detail.value) //用户输入的label const index=e.currentTarget.dataset.index //label的索引 if(label==""){ console.log(`删除索引${index}`) console.log(`删除前:${labels}`) labels.splice(index,1) console.log(`删除后:${labels}`) }else{ console.log(`增加索引${index}`) console.log(`增加前:${labels}`) labels[index]=label console.log(`增加后:${labels}`) } if(!labels.includes('')&&labels.length!=8){ labels.push('') } this.setData({ labels:labels }) return label } } bug截图: [图片][图片] wxml渲染数组元素不对
2021-01-15