前端之家收集整理的这篇文章主要介绍了
微信小程序 Image API实例详解,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
选择图片时可设置图片是否是原图,图片来源。这用的也挺常见的,比如个人中心中设置头像,可以与wx.upLoadFile()API使用
wx.chooseImage(object)
页面"
source: ''
},/**
* 选择相册或者相机 配合
上传图片接口用
*/
listenerButtonChooseImage: 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
})
}
})
},@H_
404_23@
wx.previewImage(object)
这又是一个奇葩API真实搞不懂怎么用这个。先模仿下官方咋使用但是没有效果,搞懂了在补充下自己的使用
页面"
source: ''
},/**
* 预览
图片 又一个奇葩接口
*/
listenerButtonPreviewImage: function() {
wx.previewImage({
current: 'http://img.souutu.com/2016/0511/20160511055648316.jpg',urls: [
'http://img.souutu.com/2016/0511/20160511055648316.jpg','http://img.souutu.com/2016/0511/20160511055650751.jpg','http://img.souutu.com/2016/0511/20160511054928658.jpg'
],//这根本就不走
success: function(res) {
console.log(res);
},//也根本不走
fail: function() {
console.log('fail')
}
})
}
})
@H_404_23@
感谢阅读本文,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:https://www.f2er.com/weapp/45453.html