我一直在我们的混合html应用程序中使用filetransfer插件,它支持widows 8.1和ios以及android,但我还需要它在Windows 10商店应用程序中工作。好像它无法在Windows 10中下载文件,请建议一些替代插件从服务器下载文件或者如果我们在Windows 10中完成这项工作
以下示例代码
var fileTransfer = new FileTransfer();
var uri = encodeURI("some_url.com");
var fileName = "localpathofwindows"
fileTransfer.download(uri, fileName,
function(entry) {
console.log("file download success");
},
function(error) {
console.log("file download failure");
},
false, {
headers: {
"Authorization": auth,
"action": "getFiles"
}
});
答案 0 :(得分:0)
首先,它不是apache cordova或visual studio的问题。它的Windows 10网络设置。我所要做的就是重置我的Windows 10计算机的网络设置。
搜索"设置"。
点击"网络和以太网"
点击"状态"
点击"网络重置"
重新启动计算机。