本篇将分享如何使用for指令以及获得上传图片,这感觉在大部分小程序都比较实用!!!
首先还是新建pages/goods/goods的文件夹。
在pages/goods/goods.js填写dataList:
data: {
dataList:['手机','手表','耳机']
},
在pages/goods/goods.wxml中,我们用到wx:for语句。
{
{item}}
还可以添加索引:
{
{index}}-{
{item}}
还可以自定义索引名和item名字:
自定义{
{idx}}-{
{x}}
在pages/goods/goods.js填写userInfo:
data: {
dataList:['手机','手表','耳机'],
userInfo:{
name:'Yunlord',
age:24
}
},
在pages/goods/goods.wxml中,填写以下代码:
{
{userInfo.name}}
{
{userInfo.age}}
{
{index}} - {
{item}}
效果如下:
新建pages/publish/publish文件夹。
在pages/publish/publish.wxml填下以下代码:
请上传图片
在pages/publish/publish.js填写imageList和uploadImage函数:
data: {
imageList:['/static/profile.png','/static/profile.png']
},
uploadImage:function(){
var that=this
wx.chooseImage({
count: 9,
sizeType:['original'],
sourceType:['album','camera'],
success:function(res){
that.setData({imageList:res.tempFilePaths})
}
})
},
效果如下:
添加新的图片,而不是覆盖。
that.setData({
imageList: that.data.imageList.concat(res.tempFilePaths)
})
今天的知识点就学习完毕了!!!
欢迎关注『从零开始Python+微信小程序开发』系列,持续更新中。
需要详细代码和交流的小伙伴们可以关注下方链接。