gpt4 book ai didi

ios - 如何使用 cordova 在 iOS 设备中从 iCloud 读取文件?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:24:27 28 4
gpt4 key购买 nike

我想阅读存储在 iCloud 中的 PDF 文件的内容。

  1. 我使用 FilePicker Phonegap iOS 插件 ( https://github.com/jcesarmobile/FilePicker-Phonegap-iOS-Plugin ) 选择文件。该插件为我提供了复制文件的临时路径。

  2. 我想用 Cordova 文件插件 ( https://github.com/apache/cordova-plugin-file ) 阅读它但我做错了什么,日志总是给我一个错误。

代码如下:

$scope.successCallback = function (path) {
var fileName = path.substr(path.lastIndexOf('/') + 1);
var fileDir = path.substr(0,path.lastIndexOf('/') + 1)
console.log("FilePath: " + path);

$cordovaFile.readAsDataURL(fileDir, fileName)
.then(function (data) {
var index = data.indexOf("base64,");
if(index > 0)
{
data = data.substr(index+7);
}
console.log("Data OK=" + data);
}, function (error) {
console.log("Error reading file: " + JSON.stringify(error));
});
}
window.FilePicker.pickFile($scope.successCallback, $scope.errorCallback);

这就是输出:

$FilePath: /private/var/mobile/Containers/Data/Application/22E33EF4-832B-4911-92A6-312927C42A7C/tmp/DocumentPickerIncoming/file.pdf
$Error reading file: {"code":5,"message":"ENCODING_ERR"}

我做错了什么?

最佳答案

我意识到在文件路径 中有一个“tmp”文件夹。

据此,我更改了“fileDir”以便将 cordova.file 属性映射匹配到真实设备上的物理路径,这在 iOS 文件系统布局 cordova-plugin-file 的文档。

现在可以了:)

这是最终代码:

$scope.successCallback = function (path) {
var fileName = path.substr(path.lastIndexOf('/') + 1);
var fileDir = cordova.file.tempDirectory + "DocumentPickerIncoming/";

console.log("FilePath: " + path);

$cordovaFile.readAsDataURL(fileDir, fileName)
.then(function (data) {
var index = data.indexOf("base64,");
if(index > 0)
{
data = data.substr(index+7);
}
console.log("Data OK=" + data);
}, function (error) {
console.log("Error reading file: " + JSON.stringify(error));
});
}
window.FilePicker.pickFile($scope.successCallback, $scope.errorCallback);

关于ios - 如何使用 cordova 在 iOS 设备中从 iCloud 读取文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36086584/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com