我使用带有cordova的visul工作室尝试使用javscript创建一个文件,但每次出现此错误时都会记住这个错误" Exception:Property' requestFileSystem' object [object global]不是函数"
这是我的代码:
function createFile() {
var type =window.PERSISTENT;
var size = 5 * 1024 * 1024;
window.requestFileSystem(type , 0, successCallback, errorCallback)
function successCallback(fs) {
fs.root.getFile('test.txt', { create: true, exclusive: true }, function (fileEntry) {
alert('File creation successfull!')
}, errorCallback);
}
function errorCallback(error) {
alert("ERROR: " + error.code)
}
}
答案 0 :(得分:0)
确保正确安装了cordova-plugin-file。在控制台中运行以下内容:
cordova plugin add cordova-plugin-file
您可以从此文档中获得更多见解: https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-file/