您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關微信小程序如何實現商品到詳情的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
商品頁
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); } })
感謝各位的閱讀!關于“微信小程序如何實現商品到詳情”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。