在异步瀑布中丢失了continuation-local-storage context

时间:2017-06-26 11:05:44

标签: node.js continuation-local-storag

我正在尝试使用continuation-local-storage模块在整个应用程序中使用“currentUser”。

调用异步瀑布时,上下文会丢失。

        app.get('/testing/cls',
            function(req, res, next) {
                ns.run(function() {
                    ns.set('currentUser', req.user._id)
                    return next()
                })
            },
            function(req, res) {
                function fn1(cb) {
                    console.log('async fn1', ns.get('currentUser'))
                    return cb()
                }

                function fn2(cb) {
                    console.log('async fn2', ns.get('currentUser'))
                    cb()
                }

                function fn3(cb) {
                    console.log('async fn3', ns.get('currentUser'))
                    cb()
                }

                async.waterfall([
                    fn1,
                    fn2,
                    fn3
                ], function() {
                    console.log('async waterfall done', ns.get('currentUser'))
                    res.send({user: ns.get('currentUser')})
                })
            }
        )

控制台打印

27/6/2017-11:49:39 - info: (13405) - async fn1 58a1adaslkdjh32e
27/6/2017-11:49:39 - info: (13405) - async fn2
27/6/2017-11:49:39 - info: (13405) - async fn3
27/6/2017-11:49:39 - info: (13405) - async waterfall done

修复此问题是通过包装ns.bind(fn2),但这意味着需要更改整个应用程序代码,无论我在哪里都是异步。

我做错了什么?

感谢任何帮助:)

2 个答案:

答案 0 :(得分:0)

您是否尝试过使用cls-hooked而不是continuation-local-storage。我遇到了类似的问题,并已解决。

答案 1 :(得分:0)

continuation-local-storage似乎根本没有兑现承诺。我发现cls-hooked确实可以做到(正如前面的答案已经说过的那样。)

确实很奇怪,这些库已经有2年的历史了,没有任何提交,而且似乎没有其他方法可以在节点中实现它……