我将 nodejs 与 mojito mvc 框架一起使用。
我可以从中间件访问一些全局变量吗?如何在中间件中使用 Y.mojito.models?
// ./middleware/mymiddleware.js
module.exports = function (req, res, next) {
// How to use Y?
//Y.log('fails');
//Y.mojito.models['MyModel'].fetch(function(err, data) {
// next();
//});
};