node.js – 不存在的Koa-router路由URL

前端之家收集整理的这篇文章主要介绍了node.js – 不存在的Koa-router路由URL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法相信这样做没有简单的答案.
我想重定向让我们说;
www.example.com/this-url-does-not-exist

www.example.com/

必须有一种方法,所有与koajs的nodejs网站都无法崩溃?继承人我的路由器(我使用koa与koa路由器):

router
    .get('/',function* (next) {
        this.body = "public: /";
    })
    .get('/about',function* (next) {
        this.body = "public: /about";
    })
    .get('*',function* (next) { // <--- wildcard * doesn't work
        this.body = "public: *";
    });

并且不要告诉我使用正则表达式,我一直在尝试并使用它们,这意味着在添加URL时手动更新表达式等等,这不是我想要的,而且它不能用于javascript不支持消极的外观.

解决方法

如果您不喜欢正则表达式,请执行以下操作:
var koa   = require('koa'),router = require('koa-router')(),app   = koa();


router.get('/path1',function *(){
    this.body = 'Path1 response';
});

router.get('/path2',function *(){
    this.body = 'Path2 response';
});

app.use(router.routes())
app.use(router.allowedMethods());

// catch all middleware,only land here
// if no other routing rules match
// make sure it is added after everything else
app.use(function *(){
  this.body = 'Invalid URL!!!';
  // or redirect etc
  // this.redirect('/someotherspot');
});

app.listen(3000);
原文链接:https://www.f2er.com/nodejs/241169.html

猜你在找的Node.js相关文章