作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个不断增长的 txt 文件和下面的函数来读取文件的增长。这个函数我已经放在路由 js 中并通过 $http 调用调用。一切正常,但我不知道如何停止阅读和终止/取消函数执行调用。请帮忙
var fs = require('fs'),
bite_size = 256,
readbytes = 0,
file;
fs.open('test.txt', 'r', function(err, fd) {
file = fd; //readsome();
var func = (function readsome() {
var stats = fs.fstatSync(file); // yes sometimes async does not make sense!
if(stats.size<readbytes+1) {
console.log('Hehe I am much faster than your writer..! I will sleep for a while, I deserve it!');
setTimeout(readsome, 1000);
}
else {
fs.read(file, new Buffer(bite_size), 0, bite_size, readbytes, function (err, bytecount, buff) {
console.log(buff.toString('utf-8', 0, bytecount));
readbytes+=bytecount;
process.nextTick(readsome);
});
}
})();
});
最佳答案
首先,而不是使用
process.nextTick(readsome);
setImmediate(readsome);
process.nextTick 很难中断;见this discussion .
接下来,在 readSome
的顶部,检查是否应该取消,如果是,则返回。当你想取消函数时,你可以设置一个全局变量,否则,将它包含在某个请求状态中。具体在何处存储有关如何取消的信息取决于您要在什么条件下取消。
关于javascript - node.js 如何从客户端终止函数执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46480185/
我是一名优秀的程序员,十分优秀!