Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
nwjs アプリがあり、ファイルを保存したい。だから私はこのようなコードを持っています:
try { fs.writeFileSync(this.value, data); } catch (e) { alert(e); }
そしてそれは良いです。しかし、同じファイルにデータを再保存したい場合、機能しません。エラーはありませんが、ファイルに新しいデータはありません。
このドキュメントを参照してください。
以下のコードを試してください。
var fs = require('fs'); fs.writeFile("/tmp/test", "Hello!", function(e) { if(e) { return console.log(e); } console.log("The file is saved!"); });
このリンクも役立ちます:)
それがあなたを助けることを願っています:)