微信小程序商品到详情的实现
程序员文章站
2022-06-03 13:51:09
微信小程序商品到详情结构代码资源分享给大家.
商品页
post.wxmldata-postid="{{index}}view class="container"...
微信小程序商品到详情结构代码资源分享给大家.
商品页
post.wxmldata-postid="{{index}}view class="container" 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 class="container"> <swiper indicator-dots indicator-color="rgba(255,255,255,0.3)" indicator-active-color="rgba(255,255,255,1)" autoplay> <swiper-item> <image src="/dist/images/wx.png"></image> </swiper-item> <swiper-item> <image src="/dist/images/vr.png"></image> </swiper-item> <swiper-item> <image src="/dist/images/iqiyi.png"></image> </swiper-item> </swiper> <view class="article-list"> <view class="article" wx:for="{{postlist}}" wx:for-item="article" wx:key="index" catchtap="godetail" data-postid="{{index}}"> <view class="article-author-date"> <image src="{{article.avatar}}" class="article-author"></image> <text class="article-date">{{article.date}}</text> </view> <text class="article-title">{{article.title}}</text> <image src="{{article.imgsrc}}" class="article-image"></image> <text class="article-content"> {{article.content}} </text> <view class="article-link"> <image src="/dist/images/icon/chat1.png"></image> <text>{{article.collection}}</text> <image src="/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); } })
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
推荐阅读
-
微信小程序MUI导航栏透明渐变功能示例(通过改变opacity实现)
-
微信小程序导航栏滑动定位功能示例(实现CSS3的positionsticky效果)
-
微信小程序怎么使用 微信小程序使用方法详情介绍
-
微信小程序使用map组件实现解析经纬度功能示例
-
微信小程序MUI导航栏透明渐变功能示例(通过改变rgba的a值实现)
-
微信小程序使用map组件实现路线规划功能示例
-
微信小程序可以分享到朋友圈吗 微信小程序支不支持分享朋友圈
-
微信小程序登录入口在哪? 如何发现新的小程序?
-
微信小程序使用map组件实现检索(定位位置)周边的POI功能示例
-
微信小程序map组件结合高德地图API实现wx.chooseLocation功能示例