微信小程序for循环中传递动态参数
Posted acm-bingzi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序for循环中传递动态参数相关的知识,希望对你有一定的参考价值。
for循环中的参数,没法传到对应的 js里,所以直接在 wxml页面上跳转
发送参数的 wxml页面
<view class="uploader" wx:for="bookList" wx:for-item = "item">
<navigator url="../catalog/catalog?id=item.id&title=item.title" open-type="navigate" class="uploader-text">
<text>item.title</text>
</navigator>
</view>
接收参数的 js文件
Page(
data: title:‘‘,
onLoad: function (options)
this.setData(
title: options.title
)
)
原创文章,欢迎转载,转载请注明出处!
以上是关于微信小程序for循环中传递动态参数的主要内容,如果未能解决你的问题,请参考以下文章