Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编辑 Sails js 项目中控制器配置文件中的值。我不知道或不完全理解前缀属性的含义。此属性是否会为我的路由添加前缀(例如,'post /users' 将变为 'post /prefix/users')还是会附加到控制器的文件路径中?(即 api/prefix/controllers/ && api/prefix/models/)
谢谢。
它将为您的路线添加前缀。因此,例如,如果您想创建一个版本化的 API,而不是手动绑定config/routes.js文件中的所有路由,您可以简单地添加/api/v1到前缀配置中,现在蓝图将与/api/v1/user/1.
config/routes.js
/api/v1
/api/v1/user/1
它根本不会更改文件路径,只会更改绑定的路由。