在app.js中如果有var test=123;然后调用路由app.get('/’,routes.index);那么,如何在routes.js中获得app.js中的test变量呢?因为test不是req的一部分,不能通过req[' ']的形式访问啊。我试过app.get('/’,routes.index,{test=123});也是不行的。
作者
在app.js中如果有var test=123;然后调用路由app.get('/’,routes.index);那么,如何在routes.js中获得app.js中的test变量呢?因为test不是req的一部分,不能通过req[' ']的形式访问啊。我试过app.get('/’,routes.index,{test=123});也是不行的。