Cordova FileTransfer 请求负载表单数据的名称
Cordova FileTransfer Request payload form-data's name
应用程序工作流正在使用 cordova 相机 getPicture 并使用 FileTransfer 插件将图片发送到服务器。
然后我检查了 FileTransfer 请求负载。
------WebKitFormBoundarychEuzGerq8dmX5zq
Content-Disposition:表单数据;名称=“1”;文件名="IMG_20160322_211023.jpg"
内容类型:image/jpeg
姓名 =“1”。
然后拍第二张照片 name = "2"。
我只是想知道有什么方法可以将此名称设置为固定值?
请指教!
非常感谢!
根据the plugin docs,它应该可以使用FileUploadOptions
进行配置。fileKey
:
fileKey: The name of the form element. Defaults to file. (DOMString)
应用程序工作流正在使用 cordova 相机 getPicture 并使用 FileTransfer 插件将图片发送到服务器。
然后我检查了 FileTransfer 请求负载。 ------WebKitFormBoundarychEuzGerq8dmX5zq Content-Disposition:表单数据;名称=“1”;文件名="IMG_20160322_211023.jpg" 内容类型:image/jpeg
姓名 =“1”。
然后拍第二张照片 name = "2"。
我只是想知道有什么方法可以将此名称设置为固定值?
请指教!
非常感谢!
根据the plugin docs,它应该可以使用FileUploadOptions
进行配置。fileKey
:
fileKey: The name of the form element. Defaults to file. (DOMString)