<view class="cart-cart-box-right-choose" v-if="item.Foods_Choose_Id">
<text class="cart-cart-box-right-choose-tag" v-for="(that,index) in getChoose(item.Foods_Choose_Id)" :key="index" :data-foodid="item.Id" :data-index="index" @tap="ChooseChange">{{that.Tag}}</text>
</view>
以上这一部分的VUE代码
v-for的数组是通过getChoose函数(computed和methods都试过了)返回的一个数组
在H5、 APP和微信小程序下都是正常加载的 唯独支付宝小程序无法正常显示 提示getChoose is not a function
getChoose(id){
var index = this.choose.findIndex(choose=>choose.id === id)
if(index > -1){
return this.choose[index].list
}else{
return null
}
}
Snow430
请问怎么解决的啊
2022-03-17 18:16