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

如果我需要在我的html文件中引用它,文件url到我的phonegap iOS应用程序上的文档文件夹下的文件是什么? 最佳答案

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");
                }
        );


    }
点赞