标签:log turn 阻塞 sha ons pre data func UNC
console.log("one")
console.log("two")
console.log("one") setTimeout ( () => console.log("two"), 3000) console.log("three")
同步API可以从返回值拿到API的执行结果,但是异步API不可以。
// 同步 function sum (a, b) { return a+ b }
// 异步 function getMsg () { setTimeout( function () { console.log(‘hello node.js‘) }) }
异步API获取数据的方式(回调函数)
1 function getMsg (fn) { 2 setTimeout(function () { 3 fn({ 4 msg: ‘hello‘ 5 }) 6 }, 3000) 7 } 8 9 getMsg(function (data) { 10 console.log(data) 11 })
标签:log turn 阻塞 sha ons pre data func UNC
原文地址:https://www.cnblogs.com/liea/p/11220711.html