我创建了一个简单的Apache Cordova App, 我添加了文件传输插件 这是我的代码:
var ft = new FileTransfer();
ft.download('http://www.fillmurray.com/g/200/300.jpg',
'ms-appdata:///fillmurray.js',
function () {
console.log('success');
},
function (error) {
console.log('failed');
}
);
但我一直收到这个错误:
使用command :: FileTransfer :: download :: exception = WinRTError调用native的异常:参数不正确。
有什么想法吗?