我正在尝试使用 Node.js 将数据附加到日志文件中,这工作正常,但不会转到下一行。 \n
在我下面的函数中似乎不起作用。有什么建议?
function processInput ( text )
{
fs.open('H://log.txt', 'a', 666, function( e, id ) {
fs.write( id, text + "\n", null, 'utf8', function(){
fs.close(id, function(){
console.log('file is updated');
});
});
});
}