为什么cordova.file.documentsDirectory为null?

时间:2016-04-02 00:50:03

标签: android angularjs cordova ionic-framework

我正在http://ngcordova.com/docs/plugins/fileTransfer/

尝试使用cordova-plugin-file-transfer

指定下载位置的示例代码如下。

var targetPath = cordova.file.documentsDirectory + "testImage.png";

但是,此属性不存在。我已经记录console.log(JSON.stringify(cordova.file))并得到以下输出(格式化)。

{
    "applicationDirectory": "file:///android_asset/",
    "applicationStorageDirectory": "file:///data/data/com.ionicframework.mobile379071/",
    "dataDirectory": "file:///data/data/com.ionicframework.mobile379071/files/",
    "cacheDirectory": "file:///data/data/com.ionicframework.mobile379071/cache/",
    "externalApplicationStorageDirectory": "file:///storage/emulated/0/Android/data/com.ionicframework.mobile379071/",
    "externalDataDirectory": "file:///storage/emulated/0/Android/data/com.ionicframework.mobile379071/files/",
    "externalCacheDirectory": "file:///storage/emulated/0/Android/data/com.ionicframework.mobile379071/cache/",
    "externalRootDirectory": "file:///storage/emulated/0/",
    "tempDirectory": null,
    "syncedDataDirectory": null,
    "documentsDirectory": null,
    "sharedDirectory": null
}

此外,我已经从这里https://cordova.apache.org/docs/en/dev/cordova-plugin-file/跟踪了一些提示,并通过以下更改修改了我的config.xml。

<preference name="AndroidPersistentFileLocation" value="Internal" />
<preference name="iosPersistentFileLocation" value="Library" />
<preference name="iosExtraFilesystems" value="library,library-nosync,documents,documents-nosync,cache,bundle,root" />
<preference name="AndroidExtraFilesystems" value="files,files-external,documents,sdcard,cache,cache-external,root" />

此代码不是在模拟器或浏览器上运行,而是真正的Android设备。关于为什么这个属性为null的任何想法?

当我尝试下载文件时,我得到的只是一个错误。我的代码如下所示。

$cordovaFileTransfer.download(url, path, {}, true)
    .then(function(result) { 
      console.log(JSON.stringify(result));
    }, function(err) { 
      console.log(JSON.stringify(err));
    }, function(progress) { 
      console.log(JSON.stringify(progress));
    });

这是错误(格式化)。

{
    "code": 1,
    "source": "http://192.168.0.169/api/user/file/e95cdcfd541746b3b0721c992d756137",
    "target": "IMG_20160224_030826.jpg",
    "http_status": 200,
    "body": null,
    "exception": "/IMG_20160224_030826.jpg: open failed: EROFS (Read-only file system)"
}

关于我做错的任何想法?如果cordova.file.*为空,我应该使用哪个documentsDirectory

1 个答案:

答案 0 :(得分:13)

据我检查了cordova文件插件,cordova.file.documentsDirectory对Android无效。

这是github中的cordova文件插件官方文档中提到的描述:

  

&#34; cordova.file.documentsDirectory - 应用程序专用的文件,但对其他应用程序(例如Office文件)有意义。请注意,对于OSX,这是用户的〜/ Documents目录。 (iOS,OSX)&#34;

试用适用于Android的cordova.file.externalDataDirectory或cordova.file.externalRootDirectory。希望它有所帮助