小程序页面跳转传值和取值



跳转传值

  • 先看数据传递 *
<radio class='clickeds' value="{{item}}***{{index}}***{{hotList[index].id}}" checked="{{item.checked}}"/>
radioChange: function (e) {
    console.log('radio发生change事件,携带value值为:', e.detail.value)
    this.checkCard = e.detail.value;
    var that = this;
    that.setData({
      botCardPrize: e.detail.value.split("&")[0]
    });
},
topay:function(){
    var that = this;
    console.log( "选中的会员卡金额为: " + that.data.botCardPrize);
        wx.navigateTo({ url: "../../pages/buyCard/buyCard?price=" + this.checkCard.split("&")[0] + "&name=" + this.checkCard.split("&")[1] + "&productId=" + this.checkCard.split("&")[2] + "&type=" + this.giftCard })
    }

在这里radio先选中,然后赋值给data中的checkCard,然后点击付款按钮的时候进行传值并且跳转到付款页

在新页面接收数据

onLoad: function (options) {
    let thisPrice = options.price*100;
    let productName = options.name;
    let id = options.productId;
    let type = options.type;
    let toPay = {
      thisPrice: thisPrice,
      productName: productName,
      id: id,
      type: type
    };
    this.payInfo = toPay;
  },

option后面跟链接中的对应键解出值,组合成新的数据对象

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值