鉴于经常有开发者咨询上传链路不通,对此 my.uploadFile 做详细说明。
通过 my.uploadFile 发送给服务器的报文内容,本质上是一个 multipart/form-data 表单。
可通过下面这个简单的网页来模拟:
<form action="服务端地址" method="post" enctype="multipart/form-data">
<input type="file" name="file" id="file">
<input type="submit" value="upload">
</form>
如果您在使用 API 时遇到问题,建议先使用这个网页来排查服务端能否正常接收。
my.uploadFile({
url: 'http://www.xxx.com/upload_receiver',
fileType: 'image',
fileName: 'uploaded_file',
filePath: '<filePath>', // 伪路径,由其他 API 获取(如my.chooseImage)
header: {
test_header: 'test_value', // 非标准header,客户端会发送,能否处理取决于服务端
origin: 'origin', // 标准header
},
formData: {
test_key: 'test_data',
},
complete: (res) => {
console.log(res);
},
});
它会产生一个 multipart/form-data 表单,HTTP 报文如下:
POST /upload_receiver HTTP/1.1
Host: www.xxx.com
Connection: keep-alive
Content-Length: 250832
Content-Type: multipart/form-data;
boundary=----WebKitFormBoundaryyp7ENyhCrRrAdt2C
origin: origin
test_header: test_value
------WebKitFormBoundaryyp7ENyhCrRrAdt2C
Content-Disposition: form-data;
name="test_key"
test_data
------WebKitFormBoundaryyp7ENyhCrRrAdt2C
Content-Disposition: form-data;
name="file";
filename="uploaded_file"
Content-Type: image
<...binary...>
------WebKitFormBoundaryyp7ENyhCrRrAdt2C--
API callback 结果:(上述示例代码中 res 的值)
{
"statusCode":200,
"success":true,
"status_text":"",
"data":"<response_data>",
"header":{
"Connection":"keep-alive",
"Content-Type":"text/html; charset=UTF-8",
...
}
}