我有一台使用 Sails框架的node
服务器。
当我跑步时,它会返回以下消息:
info: To see your app, visit http://localhost:1337
info: To shut down Sails, press <CTRL> + C at any time.
是否可以将路由路径添加到默认URL?
使用http://localhost:1337
代替http://localhost:1337/test/
我尝试与npm start sails lift --appPath=/test/
一起运行,但是什么也没做。
答案 0 :(得分:0)
如果您希望Sails.js在测试过程中升至特定页面,则可以进行新的查看操作(或如果下载了该应用程序,则使用view-homepage-or-redirect
)
然后在操作中可以设置
if (sails.config.environment !== 'production') {
throw {redirect:'/test'};
}
如果您最终为此做出了新动作,请不要忘记将其添加到您的routes.js