微信小程序商品到详情的实现

微信小程序商品到详情结构代码资源分享给大家.

商品页

post.wxmldata-postid="{{index}}view swiper indicator-dots indicator-color="rgba(255,255,255,0.3)" indicator-active-color="rgba(255,255,255,1)" autoplay swiper-item image src= ...

商品页 post.wxml

data-postid="{{index}} <view> <swiper indicator-dots indicator-color="rgba(255,255,255,0.3)" indicator-active-color="rgba(255,255,255,1)" autoplay> <swiper-item> <image src="https://www.jb51.net/dist/images/wx.png"></image> </swiper-item> <swiper-item> <image src="https://www.jb51.net/dist/images/vr.png"></image> </swiper-item> <swiper-item> <image src="https://www.jb51.net/dist/images/iqiyi.png"></image> </swiper-item> </swiper> <view> <view wx:for="{{postList}}" wx:for-item="article" wx:key="index" catchtap="goDetail" data-postid="{{index}}"> <view> <image src="https://www.jb51.net/{{article.avatar}}"></image> <text>{{article.date}}</text> </view> <text>{{article.title}}</text> <image src="https://www.jb51.net/{{article.imgSrc}}"></image> <text> {{article.content}} </text> <view> <image src="https://www.jb51.net/dist/images/icon/chat1.png"></image> <text>{{article.collection}}</text> <image src="https://www.jb51.net/dist/images/icon/view.png"></image> <text>{{article.reading}}</text> </view> </view> </view> </view>

post.js

en对象获取postid

var postData = require ("../../data/posts-data.js"); Page({ onLoad:function(){ this.setData({ postList:postData.postList }) }, goDetail:function(en){ var postid = en.currentTarget.dataset.postid; wx.navigateTo({ url:"post-detail/post-detail?postId="+postid }) } })

商品详情页 post-detail.js

用option接收postid 

var postData = require("../../../data/posts-data.js"); Page({ onLoad:function(option){ console.log(option); } })

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyfxdw.html