我正在尝试将数据写入Node.js中的文本文件。初始化写入流时,我收到以下错误消息:
答案 0 :(得分:1)
确保已包含在节点程序的顶部
for (var j=0, maxj=columns.length; j < maxj ; ++j) {
var td = _td_.cloneNode(false);
cellValue = arr[i][columns[j]];
// Add red background if cellValue is the smallest value.
if (cellValue === smallest) td.style.backgroundColor = 'red';
td.appendChild(document.createTextNode(arr[i][columns[j]] || ''));
tr.appendChild(td);
}
此外,您似乎拼错了'Stream'错误
var fs = require('fs');