PHP实现小程序的图片上传接口

小程序中代码:

js

Page({
  data: {
    avatarUrl:null
  },
  //事件处理函数
  bindViewTap: function() {

    var that = this;
    wx.chooseImage({
      success: function (res) {
        var tempFilePaths = res.tempFilePaths
        wx.uploadFile({
          url: 'http://127.0.0.1/text/index.php', //仅为示例,非真实的接口地址
          filePath: tempFilePaths[0],
          name: 'file',
          formData: {
            'user': 'test'
          },
          success: function (res) {
            var data = res.data
            console.log(data)
          },
          fail:function (error) {
            console.log(error)
          }
        })
      }
    })
  },

  preview_img: function () {
    wx.previewImage({
      current: this.data.avatarUrl, // 当前显示图片的http链接
      urls: this.data.avatarUrl // 需要预览的图片http链接列表
    })
  }
})

wxml:



  
      
  

   

php中代码:

你可能感兴趣的:(PHP实现小程序的图片上传接口)