我正在尝试使用FileTransfer.download(),但无论我尝试什么,似乎都会收到“错误代码3”。任何帮助是极大的赞赏。
我使用的是基于eclipe的cordova 2.1和zend studio 10来构建我的清单和apk文件。
以下是我的代码
var fileTransfer = new FileTransfer();
fileTransfer.download(
"http://www.w3.org/2011/web-apps-ws/papers/Nitobi.pdf",
"file:///sdcard/theFile.pdf",
function(entry) {
alert("download complete: " + entry.fullPath);
},
function(error) {
alert("download error source " + error.source);
alert("download error target " + error.target);
alert("upload error code" + error.code);
});
以下是我的cordova xml文件
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.phonegap.example" version="1.0.0" versionCode="1">
<name>App</name>
<feature name="http://api.phonegap.com/1.0/file"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/device"/>
<access origin=".*" />
</widget>
和我的android manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.phonegap.example"
android:versionCode="1"
android:versionName="1.0.0"
>
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:configChanges="orientation|keyboardHidden"
android:name=".PhonegapActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我也尝试在我的应用程序标记中设置android:debuggable =“true”
非常感谢任何帮助
答案 0 :(得分:4)
所以我终于找到了问题。 这是一个CORS问题
我在cordova config.xml中有正确的设置
<access origin=".*" />
但是,当Zend studio构建我的android项目时,此设置没有转移到我的res / xml / config.xml
在该文件中添加访问源行后,一切都按预期开始工作。
答案 1 :(得分:0)
我解决了这个错误。需要添加&#39; true&#39;失败回调函数后的参数,见下面的代码和欢呼的人。
fileTransfer.download(
"http://www.w3.org/2011/web-apps-ws/papers/Nitobi.pdf",
"file:///sdcard/theFile.pdf",
function(entry) {
alert("download complete: " + entry.fullPath);
},
function(error) {
alert("download error s`enter code here`ource " + error.source);
alert("download error target " + error.target);
alert("upload error code" + error.code);
}, true);