1

我一直在我们的混合 html 应用程序中使用文件传输插件,它同时支持寡妇 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"
}
});
4

1 回答 1

0

首先,apache cordova 或visual studio 不是问题。这是Windows 10的网络设置。我所要做的就是重置我的 Windows 10 计算机的网络设置。

搜索“设置”。

点击“网络和以太网”

点击“状态”

点击“网络重置”。

重启你的电脑。

于 2017-01-05T23:20:35.677 回答