如果我需要在下载文件之前将帖子数据发送到网址,该怎么办? 例如,我需要在下载文件之前将一些密钥和文件ID作为发布数据发送到url。
这就是代码的用法:
var downloadUrl = "http://mysite/test.pdf";
var relativeFilePath = "MyDir/test.pdf"; // using an absolute path also does not work
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {
var fileTransfer = new FileTransfer();
fileTransfer.download(
downloadUrl,
// The correct path!
fileSystem.root.toURL() + '/' + relativeFilePath,
function (entry) {
console.log("Success");
},
function (error) {
console.log("Error during download. Code = " + error.code);
}
);
});
但是我在哪里发送帖子数据?它甚至可能吗?有一个选项字段,但“目前只支持标题(如授权(基本身份验证)等)。”