我在≈ / controllers / UserController.js'中创建了控制器。并在那里创建了一个动作:
hello: function(req, res){
console.log('PARAMS:', req.params);
return res.send('hello');
}
当我点击地址线" http://localhost:1337/user/hello/erer" console.log()说:
PARAMS: [ id: 'erer' ]
但我需要404.
在config / blueprint.js中我更改了几行:
rest: false,
shortcuts: false,