Node.js 回调函数实例详解
程序员文章站
2023-02-25 13:33:24
node.js 回调函数 阻塞与非阻塞
node.js 异步编程的直接体现就是回调。
异步编程依托于回调来实现,但不能说使用了回调后程序就异步化了。...
node.js 回调函数 阻塞与非阻塞
node.js 异步编程的直接体现就是回调。
异步编程依托于回调来实现,但不能说使用了回调后程序就异步化了。
回调函数在完成任务后就会被调用,node 使用了大量的回调函数,node 所有 api 都支持回调函数。
阻塞代码实例(同步函数)
//阻塞是按顺序执行的 var fs = require("fs"); var data = fs.readfilesync('input.txt'); console.log(data.tostring()); console.log("程序执行结束!");
非阻塞实例(异步函数)
//非阻塞是不需要按顺序的 var fs = require("fs") fs.readfilesync('ipnut.txt',function(err,data){ if(err) return console.log(err) console.log(data.tostring()) }) console.log("程序执行结束!");
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!