javascript – Sails.js路由,其中​​包含url中的变量. ex / games /(ID HERE)

前端之家收集整理的这篇文章主要介绍了javascript – Sails.js路由,其中​​包含url中的变量. ex / games /(ID HERE)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图找到一个指南如何让路由与url中的变量一起使用
例如:games / 124512并将该id添加到变量中的控制器.

我的routes.js现在:

'/': {
    view: 'homepage'
  },'/games/': {
    controllers: 'games',}

我的GamesController.js现在:

var GamesController = {

    sayHello: function (req,res) {
        res.view('homepage',{
            user : "sayHello",});
    },sayWelcome: function (req,{
            user : "sayWelcome",});
    }
};
module.exports = GamesController;

我可以写/ games / sayHello或/ games / sayWelcome但我想要的是能够写出例子/游戏/ 234234或/ games / 234234 /设置

谢谢! 原文链接:https://www.f2er.com/js/158036.html

猜你在找的JavaScript相关文章