小程序
小游戏
企业微信
微信支付
扫描小程序码分享
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
哈哈哈嗝 看笑了
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
this.setData是小程序语法,你用的uniapp用vue语法,直接this.carList = res.data
data这里应该是这样写的
data: { action: '', ... }
箭头函数里面直接this.setData也可以了
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
哈哈哈嗝 看笑了
this.setData是小程序语法,你用的uniapp用vue语法,直接this.carList = res.data
export default {
data: {
action: '',
pid: '',
count: '0',
username: '',
cartList: []
},
onLoad() {
},
methods: {
add() {
let that = this;
uni.request({
url: 'http://localhost:8080/miniproject/shops',
method: 'POST',
data: {
action: 'add',
pid: '1',
count: '0',
username: uni.getStorageSync('username')
},
header: {
'content-type': "application/x-www-form-urlencoded" //默认值
},
success: (res) => { //res就是接收后台返回的数据s
that.setData({
cartList:res.data
})
console.log(cartList);
},
fail: function(res) {
console.log("连接失败");
}
})
}
}
}
</script>
data这里应该是这样写的
data: { action: '', ... }
箭头函数里面直接this.setData也可以了