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


Posted in Javascript onJune 27, 2017

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

商品页

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);
}
})

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

Javascript 相关文章推荐
js left,right,mid函数
Jun 10 Javascript
JS的replace方法介绍
Oct 20 Javascript
js中页面的重新加载(当前页面/上级页面)及frame或iframe元素引用介绍
Jan 24 Javascript
用jQuery实现一些导航条切换,显示隐藏的实例代码
Jun 08 Javascript
JS版的date函数(和PHP的date函数一样)
May 12 Javascript
火狐下input焦点无法重复获取问题的解决方法
Jun 16 Javascript
第四章之BootStrap表单与图片
Apr 25 Javascript
微信小程序 setData的使用方法详解
Apr 20 Javascript
angular中的cookie读写方法
Aug 02 Javascript
JS实现统计字符串中字符出现个数及最大个数功能示例
Jun 04 Javascript
react使用CSS实现react动画功能示例
May 18 Javascript
openlayers实现图标拖动获取坐标
Sep 25 Javascript
微信小程序的分类页面制作
Jun 27 #Javascript
JS实现批量上传文件并显示进度功能
Jun 27 #Javascript
angular过滤器实现排序功能
Jun 27 #Javascript
详解AngularJS ng-class样式切换
Jun 27 #Javascript
各种选择框jQuery的选中方法(实例讲解)
Jun 27 #jQuery
JavaScript事件方法(实例讲解)
Jun 27 #Javascript
简单谈谈原生js的math对象
Jun 27 #Javascript
You might like
BBS(php &amp; mysql)完整版(一)
2006/10/09 PHP
Zend Studio 无法启动的问题解决方法
2008/12/04 PHP
ThinkPHP框架实现session跨域问题的解决方法
2014/07/01 PHP
用JQuery 实现的自定义对话框
2007/03/24 Javascript
在IE6下发生Internet Explorer cannot open the Internet site错误
2010/06/21 Javascript
jquery $.each 和for怎么跳出循环终止本次循环
2013/09/27 Javascript
JavaScript通过select动态更换图片的方法
2015/03/23 Javascript
JavaScript实现图片DIV竖向滑动的方法
2015/04/25 Javascript
一道常被人轻视的web前端常见面试题(JS)
2016/02/15 Javascript
JS图片定时翻滚效果实现方法
2016/06/21 Javascript
AngularJS指令用法详解
2016/11/02 Javascript
javascript实现根据函数名称字符串动态执行函数的方法示例
2016/12/28 Javascript
react-native-fs实现文件下载、文本存储的示例代码
2017/09/22 Javascript
对Vue table 动态表格td可编辑的方法详解
2018/08/28 Javascript
nodejs aes 加解密实例
2018/10/10 NodeJs
layui监听下拉选框选中值变化的方法(包含监听普通下拉选框)
2019/09/24 Javascript
element el-tree组件的动态加载、新增、更新节点的实现
2020/02/27 Javascript
Vue实现手机计算器
2020/08/17 Javascript
Python 文件读写操作实例详解
2014/03/12 Python
Python random模块(获取随机数)常用方法和使用例子
2014/05/13 Python
python递归计算N!的方法
2015/05/05 Python
Python实现获取磁盘剩余空间的2种方法
2017/06/07 Python
Python利用QQ邮箱发送邮件的实现方法(分享)
2017/06/09 Python
python中使用正则表达式的连接符示例代码
2017/10/10 Python
Python2中文处理纪要的实现方法
2018/03/10 Python
Python 实现判断图片格式并转换,将转换的图像存到生成的文件夹中
2020/01/13 Python
Python GUI库PyQt5样式QSS子控件介绍
2020/02/25 Python
使用Python对Dicom文件进行读取与写入的实现
2020/04/20 Python
Python os库常用操作代码汇总
2020/11/03 Python
会计专业推荐信
2013/10/29 职场文书
一年级班主任感言
2014/03/08 职场文书
2014年生活老师工作总结
2014/12/23 职场文书
酒店服务员岗位职责
2015/02/09 职场文书
如何使用JavaScript策略模式校验表单
2021/04/29 Javascript
教你使用vscode 搭建react-native开发环境
2021/07/07 Javascript
Python简易开发之制作计算器
2022/04/28 Python