微信小程式伺服器端獲取影象和文字資訊
阿新 • • 發佈:2019-02-11
(PHP+CI框架)下面,可以很方便的取到檔案的資訊,但是取不到formData中的資訊。
比如下面的示例程式中,有formData:{'user': 'test'},在伺服器端,可以用$_FILES[file]取到跟上傳檔案本身的資料。那麼如何取得formData中傳輸的資料呢?
wx.chooseImage({
success: function(res) { var tempFilePaths = res.tempFilePaths
wx.uploadFile({
url: 'http://example.weixin.qq.com/upload', //僅為示例,非真實的介面地址
filePath: tempFilePaths[0],
name: 'file',
})
}
})
查了一下,formdata是儲存在$_POST中的,比如上面的情況,在伺服器端:
_POST['user'];
比如下面的示例程式中,有formData:{'user': 'test'},在伺服器端,可以用$_FILES[file]取到跟上傳檔案本身的資料。那麼如何取得formData中傳輸的資料呢?
wx.chooseImage({
success: function(res) { var tempFilePaths = res.tempFilePaths
wx.uploadFile({
url: 'http://example.weixin.qq.com/upload', //僅為示例,非真實的介面地址
filePath: tempFilePaths[0],
name: 'file',
formData:{
'user': 'test'
},success: function(res){
var data = res.data //do something
}})
}
})
查了一下,formdata是儲存在$_POST中的,比如上面的情況,在伺服器端:
_POST['user'];
可以得到$string的值是 'test'。