小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在wxml文件中,计算出的totalPrice可以正常显示。
到微信支付中传值的时候为什么console.log出来的总价是多个值呢:
求大佬,怎么才能只console.log出最后的totalPrice?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
if(i == arr.length-1) console.log('这里放你要的')
for里面加个判断 就好了
↓↓👍点赞是回答的动力哦(我的怎么没有颜色)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
if (i == arr.length - 1) {
console.log(this.data.totalPrice)
}
var totalPrice002 = this.data.totalPrice.toFixed(2)
if (i == arr.length - 1){
console.log('这里放你要的', totalPrice002)
//var totalPrice002 = totalPrice001
wx.setStorageSync('入口totalPrice', totalPrice002);
console.log("入口totalPrice:", this.data.totalPrice.toFixed(2) );
button: function(e) {
var totalPrice003 = wx.getStorageSync('totalPrice002');
console.log("totalPrice003:", totalPrice003)
你把consoe.log放for外面不就log一个值了吗
console在for里面,显示的是totalPrce累加的过程的值
--↓↓👍点赞是回答的动力哦
噗,还能这么干
好的,等等去更新
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
if(i == arr.length-1) console.log('这里放你要的')
for里面加个判断 就好了
↓↓👍点赞是回答的动力哦(我的怎么没有颜色)
if (i == arr.length - 1) {
console.log(this.data.totalPrice)
}
入口totalPrice 可以正常打印;
totalPrice003打印不出来
var totalPrice002 = this.data.totalPrice.toFixed(2)
if (i == arr.length - 1){
console.log('这里放你要的', totalPrice002)
//var totalPrice002 = totalPrice001
wx.setStorageSync('入口totalPrice', totalPrice002);
console.log("入口totalPrice:", this.data.totalPrice.toFixed(2) );
}
button: function(e) {
var totalPrice003 = wx.getStorageSync('totalPrice002');
console.log("totalPrice003:", totalPrice003)
}
你把consoe.log放for外面不就log一个值了吗
console在for里面,显示的是totalPrce累加的过程的值
--↓↓👍点赞是回答的动力哦
噗,还能这么干
好的,等等去更新