将url归档到位于phonegap iOS应用程序的Documents文件夹中的文件?

时间:2010-12-11 00:43:58

标签: iphone cordova

如果我需要在我的html文件中引用文件文件夹,我的phonegap iOS应用程序上的文件夹下的文件url是什么样的?

3 个答案:

答案 0 :(得分:2)

getAbsolutePath("mead.jpg",
                        function(entry){
                            //alert(entry.fullPath);
                            $("#img_test").attr("src",entry.fullPath);
                            console.log("jq$:=" + entry.fullPath);
                            //$("#img_test").attr("src","img/test.jpg");
                        });

// file system
    function getAbsolutePath(file_name,call_back){
        var full_path = "";
        window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, 
               function (file_system){
                    file_system.root.getFile(
                        file_name, 
                        {create: false},
                        call_back
                        , 
                        function(){
                            console.log("failed to fetch file, please check the name");
                        }
                    );

                }, 
                function(){
                    console.log("failed file sytem");
                }
        );


    }

答案 1 :(得分:0)

phonegap项目中的www文件夹是root。例如,该文件夹中的image.png添加了

<img src="image.png" />

答案 2 :(得分:0)

我引用保存在文档文件夹中的图像,如下所示:/var/mobile/Applications/21F126D3-D345-490D-91C6-7619CC682944/Documents/'name'.jpg

带有字母和数字的部分对于每个应用程序都是个性化的,因此您的不同。您可以通过以下方式获得:

 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSys) {
    var pathToRoot = fileSys.root.fullPath;
}, function() {
    console.log('****iPhone:Error when requesting persisten filesystem to find root path.');
});

phonegap docs中解释了这一点。