欢迎来到258分享网,纯净的网络源码分享基地!

258资源分享网

全部作品
全部作品
网站源码
微信源码
素材特效
源码插件
视频教程
建站学院
热门搜索: 织梦  农业种植  农业  安全设置  官方
258资源分享 > 建站学院 > 微信开发 > 微信小程序商品到详情(传参)

推荐下载

HTML5响应式自适应网咯设计

2020-05-12   浏览:789

HTML5自适应律师工作室类网

2020-04-04   浏览:654

高端HTML5响应式企业通用网

2020-05-06   浏览:560

html5响应式外贸网站英文版

2020-05-08   浏览:545

HTML5影视传媒文化公司类网

2020-05-12   浏览:543

微信小程序商品到详情(传参)

发布时间:2020-12-29  

商品页 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}}

 

<viewclass="container">

<swiperindicator-dotsindicator-color="rgba(255,255,255,0.3)"indicator-active-color="rgba(255,255,255,1)"autoplay>

<swiper-item>

<imagesrc="/dist/images/wx.png"></image>

</swiper-item>

<swiper-item>

<imagesrc="/dist/images/vr.png"></image>

</swiper-item>

<swiper-item>

<imagesrc="/dist/images/iqiyi.png"></image>

</swiper-item>

</swiper>

<viewclass="article-list">

<viewclass="article"wx:for="{{postList}}"wx:for-item="article"wx:key="index"catchtap="goDetail"data-postid="{{index}}">

<viewclass="article-author-date">

<imagesrc="{{article.avatar}}"class="article-author"></image>

<textclass="article-date">{{article.date}}</text>

</view>

<textclass="article-title">{{article.title}}</text>

<imagesrc="{{article.imgSrc}}"class="article-image"></image>

<textclass="article-content">

{{article.content}}

</text>

<viewclass="article-link">

<imagesrc="/dist/images/icon/chat1.png"></image>

<text>{{article.collection}}</text>

<imagesrc="/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);

}

})

本文标签

: