我想在我的 php 项目中使用 express.js 对应用程序进行私有访问,例如 .htaccess 和 .htpasswd 。
我正在使用http-auth
这是我的代码:
app.get('/', function(req, res) {
basic.apply(req, res, function(username) {
res.redirect(routes.index);
});
});
问题是我得到一个错误:
500 TypeError: Object function (req, res){ res.render('index', { title: 'Express' }); } 没有方法'indexOf'
无需认证,
app.get('/', routes.index);
工作没有任何麻烦。
我想一个中间件来读取我的索引,然后使用 res.send()... 它可以工作吗?或者我错过了什么?