這篇文章主要為大家介紹了關於微信小程式實現圖片上傳功能的相關內容,文中詳細介紹了前端PHP後端的範例程式碼,對大家的理解和學習具有一定的參考學習價值,需要的朋友們一起學習學習吧。
前言
幾乎每個程式都需要用到圖片。以下就來跟大家介紹前端 PHP後端實作微信小程式實作圖片上傳功能,分享出來供大家參考學習,下面話不多說了,來一起看看詳細的介紹吧。
方法如下:
一、wxml檔
<text>上传图片</text> <view> <button bindtap="uploadimg">点击选择上传图</button> </view> <image src='{{source}}' style='width:600rpx; height:600rpx' />
二、js檔案
Page({ /** * 页面的初始数据 */ data: { //初始化为空 source:'' }, /** * 上传图片 */ uploadimg:function(){ var that = this; wx.chooseImage({ //从本地相册选择图片或使用相机拍照 count: 1, // 默认9 sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有 sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有 success:function(res){ //console.log(res) //前台显示 that.setData({ source: res.tempFilePaths }) // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片 var tempFilePaths = res.tempFilePaths wx.uploadFile({ url: 'http://www.website.com/home/api/uploadimg', filePath: tempFilePaths[0], name: 'file', success:function(res){ //打印 console.log(res.data) } }) } }) },)}
三、PHP後端程式碼
// 上传图片 public function uploadimg() { $file = request()->file('file'); if ($file) { $info = $file->move('public/upload/weixin/'); if ($info) { $file = $info->getSaveName(); $res = ['errCode'=>0,'errMsg'=>'图片上传成功','file'=>$file]; return json($res); } } }
運行結果:
##console列印結果: 此時表示上傳成功! 上面是我整理給大家的,希望今後對大家有幫助。 相關文章:以上是使用微信小程式如何實現圖片上傳功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!