Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

uniapp 小程序编译基操碰到的问题

小程序,报错

<view class="v-else">
    <view class="cart-item" v-for="(item, index1) in cartList" :key="item.id">
        //下面两个只要传item就报错,我传空对象,空字符都可以,报错信息在下面截图,这不是最基本的写法吗
        <text @click="actionGoods(item)">{{item.snptGoodsName}}</text>
        <text @click="actionGoods(item)">{{item.snptSpec}}</text>
    </view>
</view>


methods: {
    actionGoods(goods) {
        uni.navigateTo({
            url: '../goods/GoodsDetailPage?goodsId=' + goods.goodsId + '&skuId=' + goods.skuId
        })
    }
 }
 
 //报错

image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...