个性化阅读
专注于IT技术分析

如何用Cordova创建文件

在cordova中创建文件非常容易, 请使用以下代码在特定文件夹中创建文件。此代码可在所有cordova平台上使用()

var path = "file:///storage/emulated/0";
var filename = "myfile.txt";

window.resolveLocalFileSystemURL(path, function(dir) {
	dir.getFile(filename, {create:true}, function(fileEntry) {
            // The file has been succesfully created. Use fileEntry to read the content or delete the file
	});
});

请记住, 你需要来自cordova的文件插件, 请在此处阅读和学习如何使用它。你可以使用以下命令将文件插件下载到你的项目中:

cordova plugin add cordova-plugin-file
赞(1)
未经允许不得转载:srcmini » 如何用Cordova创建文件

评论 抢沙发

评论前必须登录!