如何使用Phonegap将html写入文本文件?我试图按照API文档中的示例进行操作。文件创建有效,但我无法使console.log工作。
function gotFS(fileSystem) {
fileSystem.root.getFile("readme.txt", {create: true, exclusive: false}, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
fileEntry.createWriter(gotFileWriter, fail);
}
function gotFileWriter(writer) {
writer.onwriteend = function(evt) {
console.log($("h1"));
};
}
function fail(error) {
console.log(error.code);
}
<body>
<h1>Example</h1>
<p>Write File</p>
</body>
答案 0 :(得分:0)
请改用“document.write”。它对我有用。
答案 1 :(得分:0)
尝试使用
Log.d("info", "YOUR_TEXT");