that.setData({ messageList: res.data.messageList, msgCount: res.data.msgCount, goodsId: res.data.goodsId, goodsName: res.data.goodsName, goodsDesc: res.data.goodsDesc, newPrice: res.data.newPrice, oldPrice: res.data.oldPrice, goodsCreateTime: res.data.goodsCreateTime, goodsImageUrl: res.data.goodsImageUrl, goodsAuthorName: res.data.goodsAuthorName, inputTxt:'' });
时间: 2023-12-06 21:40:47 浏览: 81
小程序SetData()方法使用
这是一段 JavaScript 代码,它的作用是将 `res.data` 中的数据分别赋值给 `messageList`、`msgCount`、`goodsId`、`goodsName`、`goodsDesc`、`newPrice`、`oldPrice`、`goodsCreateTime`、`goodsImageUrl`、`goodsAuthorName` 这些变量,并将 `inputTxt` 置为空。这段代码使用了小程序中的 setData 方法,可以更新页面的数据。
阅读全文