我試圖使用文件傳輸插件上傳手機隙文件,但FILE_URI
返回斑點blob:http%3A//localhost%3A65304/506be833-4afb-42a4-beed-01e43bc9cd64
然後我用下面的代碼來驗證它的文件路徑和返回錯誤代碼5.上傳中的PhoneGap /科爾多瓦任何類型的文件
jQuery代碼:
window.resolveLocalFileSystemURL(cordova.file.applicationDirectory + snapSrc, gotFile, fail);
function fail(e) {
console.log("FileSystem Error");
console.dir(e);
}
function gotFile(fileEntry) {
fileEntry.file(function(file) {
var s = "";
s += "<b>name:</b> " + file.name + "<br/>";
s += "<b>localURL:</b> " + file.localURL + "<br/>";
s += "<b>type:</b> " + file.type + "<br/>";
document.querySelector("#status").innerHTML = s;
console.dir(file);
});
}
- 如何找到的名稱和文件的類型。
- 如何解決錯誤代碼5
resolveLocalFileSystemURI已棄用。請改爲調用resolveLocalFileSystemURL。 – veeran
我使用intel xdk,它說「resolveLocalFileSystemURI已被棄用,請調用resolveLocalFileSystemURL」。 – veeran