Home  >  Article  >  Backend Development  >  PHP implementation of WeChat applet picture upload example code sharing

PHP implementation of WeChat applet picture upload example code sharing

*文
*文Original
2017-12-22 11:29:303135browse

Mini programs have become a popular development direction due to their advantages of being lightweight and fast, but due to their unique packaging, many novices are confused. This article uses PHP backend to implement a simple mini program image upload, so that everyone can have a clearer understanding of mini program development.


##1. wxml file

<text>上传图片</text>
<view>
 
<button bindtap="uploadimg">点击选择上传图</button>
 
</view>
<image src=&#39;{{source}}&#39; style=&#39;width:600rpx; height:600rpx&#39; />


##2. js file

Page({
  /**
   * 页面的初始数据
   */
  data: {
  //初始化为空
    source:&#39;&#39;
  },
/**
 * 上传图片
 */
  uploadimg:function(){
    var that = this;
    wx.chooseImage({  //从本地相册选择图片或使用相机拍照
      count: 1, // 默认9
      sizeType: [&#39;original&#39;, &#39;compressed&#39;], // 可以指定是原图还是压缩图,默认二者都有
      sourceType: [&#39;album&#39;, &#39;camera&#39;], // 可以指定来源是相册还是相机,默认二者都有
      success:function(res){
        //console.log(res)
       //前台显示
        that.setData({
          source: res.tempFilePaths
        })
        // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
        var tempFilePaths = res.tempFilePaths
         wx.uploadFile({
          url: &#39;http://www.website.com/home/api/uploadimg&#39;,
          filePath: tempFilePaths[0],
          name: &#39;file&#39;,
         
          success:function(res){
            //打印
            console.log(res.data)
          }
        })
       
      }
    })
  },
)}


3. PHP backend code

// 上传图片
    public function uploadimg()
    {
         $file = request()->file(&#39;file&#39;);
        if ($file) {
            $info = $file->move(&#39;public/upload/weixin/&#39;);
            if ($info) {
                $file = $info->getSaveName();
                $res = [&#39;errCode&#39;=>0,&#39;errMsg&#39;=>&#39;图片上传成功&#39;,&#39;file&#39;=>$file];
                return json($res);
            }
        }
       
    }

Related reading:

[Course ] Easily play with WeChat mini program development and production video tutorial

Commonly used mini program code snippets in PHP

Implementing a simple random lottery applet based on PHP

The above is the detailed content of PHP implementation of WeChat applet picture upload example code sharing. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn