微信小程序传递数组

微信小程序传递数组,第1张

html:

<text class="numberli" wx:for="{{opencode[index]}}" wx:key="opencode">{{item}}</text>

js:

success: function(res) {

var arrs = []

res.data.data.map(function(item){

arrs.push(item.data.opencode.split(','))

}),

that.setData({

opencode:arrs,

}),

console.log(arrs)

}

这里将 good_id=16 参数传入 detail 页面, 然后 detail 页面的 onload 方法内接受.

如果需要传多个参数, 用 &链接即可

这里可以传字符串, 也能传数组等, 这样就把 address 传递并接受了

在bindtap定义的点击方法 swiperTap : function(e) 中获取

其他的参数取出也如此,


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11871868.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存