如果我需要在我的html文件中引用文件,那麼文件url會在我的phonegap iOS應用程序的文檔文件夾下的文件中發揮什麼作用?文件的URL到Phonegap iOS應用程序的Documents文件夾中的文件?
4
A
回答
0
您的phonegap項目中的www文件夾是根。因此,例如,該文件夾中一個image.png中加入
<img src="image.png" />
0
我參考保存在文檔中的圖像文件夾是這樣的:在/ var /移動/應用/ 21F126D3-D345-490D-91C6-7619CC682944 /文檔/ '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解釋。
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. iOS應用程序更新新版本從Documents文件夾中刪除文件
- 2. 通過iphone應用程序中的jqtouch訪問Documents文件夾中的文件
- 3. Phonegap + jQuery手機:使用jQuery Mobile從iOS應用程序的Documents文件夾註入html文件
- 4. 的PhoneGap 2.1的iOS:在應用WWW文件夾讀取文件
- 5. 如何擦除IOS中的Documents文件夾中的應用程序數據?
- 6. 的NSFileManager應用程序文件夾 - IOS
- 7. 在iOS應用程序中創建文檔文件夾內的文件夾
- 8. iOS版 - 下載文件到應用程序文件夾
- 9. ios:將數據文件同步到應用程序文件夾
- 10. iOS - 訪問應用程序創建的文件和文件夾
- 11. 將文件從應用程序文件夾複製到JQM/Phonegap App中的根文件夾?
- 12. 對XCode中Documents文件夾中caf文件的AUPresetset引用
- 13. 如何使用C#訪問iOS應用程序的Documents文件夾
- 14. 文檔文件夾中的文件應用程序的大小iOS
- 15. 將sqlite文件複製到Documents文件夾後,文件變空
- 16. 下載文件到Android應用程序中的文件夾
- 17. 訪問包括應用程序文件夾中的文件夾。
- 18. Android的寫文件到不同的應用程序文件夾
- 19. 如何使用Cordova將應用程序包中的文件複製到Documents文件夾中?
- 20. iPhone Dev:UIWebView baseUrl到Documents文件夾中的資源不是應用程序包
- 21. 如何使用XMLVM訪問iPhone應用程序Documents文件夾
- 22. PhoneGap iOS,如何獲取應用程序「文檔」文件夾的完整路徑?
- 23. 使用Phonegap寫入Windows Phone上的Documents文件夾
- 24. 使用phonegap從iPhone的Documents文件夾加載本地網站?
- 25. 如何查找我的iPhones Documents文件夾中的文件的文件名?
- 26. 從文件夾複製文件夾(帶內容)到Documents目錄 - iOS
- 27. 使用phonegap將文件下載到ios/android文件夾
- 28. 重寫我的應用程序文件夾中的xml文件
- 29. 的fopen文件中的應用程序數據文件夾(WAMP)
- 30. 覆蓋應用程序文件夾中的文件的問題