我尝试使用cordova FileTransfert发送自定义标头但是当我在PHP中检查函数getAllHeader()时,'我找不到我的自定义标头。
var options = new FileUploadOptions();
options.fileKey = "picture";
options.fileName = imageData.substr(imageData.lastIndexOf('/')+1);
options.mimeType = "image/jpeg";
var headers={'headerParam':'headerValue'};
options.headers = headers;
var ft = new FileTransfer();
ft.upload(imageData, url, succesFileTransfer, errorFileTransfer, options);
在PHP中,我检查标题:getallheaders();而且我没有找到之前发送的标题。
感谢您的帮助
答案 0 :(得分:1)
Php没有显示通过Cordova FileTransfert发布的标头。 我认为发送的标题是受保护的。
可以通过这部分代码在PHP中捕获标题:
$this->
希望这有助于某人