页: 1
f. 标准(fd、缓冲、抵销、长度、位置、[回顾])
So I wrote like:
var fs = require( fs );
fs.open( ./example.txt , a , 0666, function(err, fd) {
if (err) { throw err; }
console.log( file opened );
fs.write(fd, test , null, null, null, function(err) {
if (err) { throw err; }
console.log( file written );
fs.close(fd, function() {
console.log( file closed );
});
});
});
但背书。 没有打字。 产出只是不限的。
fs.write(fd, test , null, null, function(err) {
but I assign callback for 5th parameter not 6th. this is works. Why defferent with document.
并且,在源头(Node_file.cc)的反馈是6个参数。
Local<Value> cb = args[5];
我不理解。