微信小程序商品到详情的实现
更新时间:2017年06月27日 09:38:13 投稿:lqh
这篇文章主要介绍了微信小程序商品到详情的实现的相关资料,需要的朋友可以参考下
微信小程序商品到详情结构代码资源分享给大家.
商品页
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); } })
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关文章
lodash内部方法getFuncName及setToString剖析详解
本篇章我们主要是通过了解lodash里的两个内部方法getFuncName方法和setToString方法,在实际开发中我们也可以借鉴方法的实现思路,在需要的时候简单封装一下,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-09-09超越Node.js的JavaScript运行环境Bun.js功能特性详解
这篇文章主要为大家介绍了超越Node.js的JavaScript运行环境Bun.js功能特性详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-09-09Web Components实现类Element UI中的Card卡片
这篇文章主要为大家介绍了Web Components实现类Element UI中的Card卡片实例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-07-07package.json中browser module main字段优先级对比
这篇文章主要介绍了package.json中browser module main字段的优先级详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-07-07
最新评论