当前位置:   article > 正文

微信小程序之——商品详情页_小程序商品详情页面

小程序商品详情页面

一、效果图

在这里插入图片描述
在这里插入图片描述

二、代码

movie.wxml:

请添加图片描述

movie.js:

注:这里的url就是你跳转的详情页面 + 当前dom元素的id

tiaozhuan:function(e){
  var id = e.currentTarget.id
  console.log(id)
  wx.navigateTo({
    url: '../detail/detail?id='+id,
  })
}


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

detail.wxml

正常渲染页面内容就可以了
  • 1

detail.js

onLoad: function(options){
    var page = this
    console.log("这是options"+options)
    var id = options.id //把moview.js中url链接传过来的id赋值出来后,再传到我们的详情页接口后面
    wx.request({
      url: 'https://m.maoyan.com/ajax/detailmovie?movieId='+id,
      method: 'GET',
      
      success:function(res){
          console.log(res)
          console.log("详情页面请求成功!")
        page.setData({
            detail:res.data
        })
        wx.setNavigationBarTitle({
          title: res.data.detailMovie.nm,
        })
      },
      fail:function(res){

      }

    })
},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

最后注:
如果其他页面也有商品想跳到详情页,那就给dom元素一个id=“{{item.id}}” bindtap=“tiaozhuanDetail” ,JS代码用之前写过那个就行了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/247353?site
推荐阅读
相关标签
  

闽ICP备14008679号