0

我无法将图像从服务器下载到黑莓设备 我得到 0kb 大小的图像

我需要添加一些功能或权限吗?

而且,我们是否需要像 android 一样将 url 列入白名单才能下载图片?这是代码

function downloadFile(dcim, img_arr, index) {
alert("download called");
alert("value of index is" + index);

if (index == img_arr.length) {
    displayImageGallery(dcim);
    return;
}

var image_url = img_arr[index]['image_url'];
alert("the image url is" + image_url);

var localFileName = image_url.substring(image_url.lastIndexOf('/') + 1);

dcim.getFile(localFileName, {
    create : true,
    exclusive : false
},
        function(fileEntry) {
            var localPath = fileEntry.fullPath;
            if (device.platform === "Android"
                    && localPath.indexOf("file://") === 0) {
                localPath = localPath.substring(7);
            }
            var ft = new FileTransfer();
            ft.download(image_url, localPath, function(entry) {
                downloadFile(dcim, img_arr, index + 1);
            }, function() {
                alert("Error While Downloading File");
            });
        }, fail);

}

4

1 回答 1

0

您可以通过编辑 config.xml 文件并为需要连接的每个外部域创建访问元素来将外部域列入白名单。

这是一个例子:

<access subdomains="true" uri="http://twitter.com" />
<access subdomains="true" uri="http://myimagedomain.com" />

可以在此处找到有关此访问元素的文档: https ://developer.blackberry.com/html5/documentation/access_element_834677_11.html

希望有帮助。

于 2012-10-31T16:44:12.280 回答