我想知道connect.js middelware中basicAuth的异步和同步回调模式之间有什么区别。
我理解nodejs在单线程事件循环中,但同步“回调”是一个回调函数,因此是异步的。所以我不明白它的区别是什么。
答案 0 :(得分:0)
在这两种情况下,您的回调实际上都是由basicAuth
同步调用的,但在异步情况下,您会将fn
参数调用回调,以将结果传回basicAuth
而不是返回你的回调函数的结果。
如规范示例代码from here中所示。
// Sync case, where the callback function returns true/false
connect(
connect.basicAuth(function(user, pass){
return 'tj' == user & 'wahoo' == pass;
})
);
// Async case, where User.authenticate uses an asynchronous call to determine the validity
// of the user, and fn is called by that function to deliver the true/false result back to
// basicAuth once the async call completes.
connect(
connect.basicAuth(function(user, pass, fn){
User.authenticate({ user: user, pass: pass }, fn);
})
);