前端之家收集整理的这篇文章主要介绍了
微信小程序实现图片轮播及文件上传,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
刚刚接触微信小程序,看着网上的资源写了个小例子,本地图片轮播以及图片上传。
index.js
自动播放
interval: 2000,//
自动播放时间间隔
duration: 1000,//滑动动画时间
userInfo: {}
},onLoad:function(){
console.log('onLoad Test');
}
})
注:imgUrls中为本地图片数组。
index.wxml:
页面"
source: '',tt:false
},/**
* 选择相册或者相机 配合
上传图片接口用
*/
onLoad: function() {
var that = this;
wx.chooseImage({
count: 1,//original原图,compressed压缩图
sizeType: ['original'],//album来源相册 camera相机
sourceType: ['album','camera'],//成功时会回调
success: function(res) {
//重绘视图
that.setData({
source: res.tempFilePaths,tt:true
})
/* var tempFilePaths = res.tempFilePaths
wx.uploadFile({
url: 'https://',//仅为示例,非真实的接口地址
filePath: tempFilePaths[0],name: 'file',formData:{
'user': 'test'
},success: function(res){
var data = res.data
//do something
}
})*/
}
})
},/*onHide:function(){
this.setData({
source:''
})
}*/
})
显示
图片","iconPath": "pages/images/icon_API.png","selectedIconPath": "pages/images/icon_API_HL.png"
},{
"pagePath": "pages/upload/upload","text": "
上传","selectedIconPath": "pages/images/icon_API_HL.png"
}]
},"debug": true
}