Express JS reverse URL route (Django style)

房东的猫 提交于 2019-11-30 13:06:10

问题


I'm using Express JS and I want a functionality similar to Django's reverse function. So if I have a route, for example

app.get('/users/:id/:name', function(req, res) { /* some code */ } )

I'd like to use a function for example

reverse('/users/:id/:name', 15, 'John');

or even better

reverse('/users/:id/:name', { id : 15, name : 'John' });

which will give me the url /users/15/John. Does such function exist? And if not then do you have any ideas how to write such function (considering Express' routing algorithm)?


回答1:


Here is your code:

function reverse(url, obj) { 
    return url.replace(/(\/:\w+\??)/g, function (m, c) { 
        c=c.replace(/[/:?]/g, ''); 
        return obj[c] ? '/' + obj[c] : ""; 
    }); 
}

reverse('/users/:id/:name', { id: 15, name: 'John' });
reverse('/users/:id?', { id: 15});
reverse('/users/:id?', {});



回答2:


I've just created the package reversable-router that solves this along other problems for the routing.

Example from the readme:

app.get('/admin/user/:id', 'admin.user.edit', function(req, res, next){
    //...
});

//.. and a helper in the view files:
url('admin.user.edit', {id: 2})


来源:https://stackoverflow.com/questions/10027574/express-js-reverse-url-route-django-style

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!