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

微信小程序navigator带参数跳转及接收参数内容

时间:2020-06-05 15:32:39      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:draw   img   options   for   参数   option   cti   dex   set   

// index.wxml

<navigator class=‘looks-view‘ wx:for="{{imgUrlNew}}" wx:key="index" url="/pages/draw/draw?id={{item.id}}&imgUrl={{item.img}}">
     <image src=‘{{item.img}}‘ class=‘looks-view-image‘></image>
     <text class=‘looks-view-text‘>{{item.name}}</text>
</navigator>

// index.js
data: {
    id:‘‘,
    imgUrl:‘‘
},
onLoad: function (options) {
    this.setData({
      id: options.id,
      imgUrl: options.imgUrl
    })
},

 

微信小程序navigator带参数跳转及接收参数内容

标签:draw   img   options   for   参数   option   cti   dex   set   

原文地址:https://www.cnblogs.com/Jessie-candy/p/13049419.html

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