在Android手机库中显示的iOS图库中未显示下载的图像

时间:2016-03-03 09:14:29

标签: ios cordova visual-studio-2012 telerik-appbuilder

我使用telerik app builder平台创建应用程序。我创建了下载图像功能。此功能适用于Android设备,但不适用于iOS。我不知道为什么它不起作用。

当用户在Android设备中使用应用程序下载图像时,cordova文件系统会创建目录并将图像保存到该目录中,图像也会显示在图库中。当用户在iOS中执行相同的操作时,它不会创建任何目录,并且图像不会显示在库中。我还没有找到保存此图片的位置。

请提供有关如何在iOS图库中保存下载图像的建议。

我的代码低于

function onDeviceReady() {
var that = this,
App = new downloadApp(),
fileName = "sample.png",
uri = encodeURI("http://www.telerik.com/sfimages/default-source/logos/app_builder.png"),
folderName = "test";

navigator.splashscreen.hide();
App.run(uri, fileName, folderName);
}

downloadApp.prototype = {
run: function (uri, fileName, folderName) {
var that = this,
    filePath = "";

document.getElementById("download").addEventListener("click", function () {
    that.getFilesystem(
        function (fileSystem) {
            console.log(fileSystem);
            that.getFolder(fileSystem, folderName, function (folder) {
                filePath = folder.toURL() + "\/" + fileName;
                console.log(filePath);

                that.transferFile(uri, filePath)
            }, function () {
                console.log("failed to get folder");
            });

        },
        function () {
            console.log("failed to get filesystem");
        }
        );
});


},

getFilesystem: function (success, fail) {
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, success, fail);
},
getFolder: function (fileSystem, folderName, success, fail) {
fileSystem.root.getDirectory(folderName, { create: true, exclusive: false },     success, fail)
   },

transferFile: function (uri, filePath) {
var transfer = new FileTransfer();
transfer.download(
    uri,
    filePath,
    function (entry) {
        var targetPath = entry.toURL();
    },
    function (error) {
       console.log(error)
    }
    );
},

0 个答案:

没有答案