小程序點擊添加圖片


 

wxml:

<view class="uPic">
<view class="tit">頭像:</view>
<view class=""><image src="{{imageList}}" class="uPicimg" mode="scaleToFill" bindtap="chooseImg"></image></view>
</view>

wxss:此處省略樣式代碼!!!!

 js:

chooseImg:function () {
var that = this
wx.chooseImage({
sourceType: sourceType[this.data.sourceTypeIndex],
sizeType: sizeType[this.data.sizeTypeIndex],
success: function(res) {
var tempFilePaths = res.tempFilePaths[0]
console.log(res.tempFilePaths)
that.setData({imageList: res.tempFilePaths[0]})
}
})
},

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM