码迷,mamicode.com
首页 > 微信 > 详细

微信小程序for循环中传递动态参数

时间:2019-07-17 16:55:03      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:微信小程序   navigate   list   for循环   tle   ons   klist   ext   nbsp   

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循环中传递动态参数

标签:微信小程序   navigate   list   for循环   tle   ons   klist   ext   nbsp   

原文地址:https://www.cnblogs.com/acm-bingzi/p/wechat_param.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!