NodeJs + ExpressJs 应用程序路由异常行为

NodeJs + ExpressJs app routing odd behavior

我正在学习 ExpressJS。到目前为止,我已经使用 PassportJS 设置了一个带有用户身份验证的简单待办事项应用程序。我使用 Mongoose 作为存储库。网络上没有任何内容可以解释我在路线设置中看到的奇怪行为。

场景:

奇怪的是,当我删除 router.get('/*', ... 配置时,当我点击基本路径时,我的应用程序仍会转到 public/index.html '/',但当我点击 '/asdfa' 时不是。

    ...
    
    function loggedIn(req, res, next) {
        if (req.user) {
            next();
        } else {
            res.redirect('/passport');
        }
    }

    var router = express.Router();
// passport ----------------------------------------------------------------
// get passport page
router.get('/passport', notLoggedIn, function(req, res) {
    res.sendfile('./public/passport.html');
});

// post login
router.post('/login', passport.authenticate('login', {
    successRedirect: '/',
    failureRedirect: '/passport',
    failureFlash: true
}));

// post registration
router.post('/signup', passport.authenticate('signup', {
    successRedirect: '/',
    failureRedirect: '/passport',
    failureFlash: true
}));

router.get('/logout', function(req, res) {
    req.session.destroy();
    req.logout();
    res.redirect('/');
});

// api ---------------------------------------------------------------------
// get all todos
router.get('/api/todos', function(req, res) {

    // use mongoose to get all todos in the database
    Todo.find({owner: req.user.username}, function(err, todos) {

        // if there is an error retrieving, send the error. nothing after res.send(err) will execute
        if (err)
            res.send(err)

        res.json(todos); // return all todos in JSON format
    });
});

// create todo and send back all todos after creation
router.post('/api/todos', function(req, res) {

    // create a todo, information comes from AJAX request from Angular
    Todo.create({
        owner: req.user.username,
        text : req.body.text,
        done : false
    }, function(err, todo) {
        if (err)
            res.send(err);

        // get and return all the todos after you create another
        Todo.find({owner: req.user.username}, function(err, todos) {
            if (err)
                res.send(err)
            res.json(todos);
        });
    });

});

// delete a todo
router.delete('/api/todos/:todo_id', function(req, res) {
    Todo.remove({
        _id : req.params.todo_id
    }, function(err, todo) {
        if (err)
            res.send(err);

        // get and return all the todos after you create another
        Todo.find({owner: req.user.username}, function(err, todos) {
            if (err)
                res.send(err)
            res.json(todos);
        });
    });
});

// application -------------------------------------------------------------
router.all('*', loggedIn);
router.get('/*', function(req, res) {
    res.sendfile('./public/index.html'); // load the single view file (angular will handle the page changes on the front-end)
});

    app.use('/', router);
    app.listen(3000);
    console.log("App listening on port 3000");

谁能给我解释一下这是怎么回事?我想要实现的是让应用程序在用户未登录时将用户重新路由到登录页面,然后他们转到 www.myapp.com/

显然问题是 HTML 默认在根目录中的任何文件夹中查找 index.html 文件。当我将 html 文件更改为 abc.html 之类的其他文件时,问题就解决了。对我来说似乎是个错误。