我刚刚开始使用sails和nodejs。
我想知道,有没有一种简单的方法可以使用Sails中提供的配置创建全局前缀?或者我需要带另一个图书馆吗?
我在config / controller.js中找到了蓝图前缀配置。似乎应该有一个简单的方法来执行此操作,因为应用程序已经部分支持它...
我正在尝试在我的应用程序的所有路径之前获得类似/ api / v1的内容。
感谢。
答案 0 :(得分:15)
您可以在config / controller.js中将前缀属性设置为/api/v1
。但请注意,这只会将前缀添加到蓝图路由(由Sails自动生成的路由)。
因此,如果前缀设置为/api/v1
,路由/some
,则可以在uri /api/v1/some
访问它。
但是如果你声明这样的路线:"post /someEndPoint": {controller: "someController", action: "someAction"}
,前缀什么都不做。
在这种情况下,您必须手动编写它们:post /api/v1/someEndPoint
并将actions
属性设置为config/controller.js
(至少在生产中)以关闭每个自动生成的路径控制器内的动作。
@EDIT 08.08.2014
以上内容适用于小于 v0.10 的Sails.Js
版本。因为我不再使用Sails,我不知道现在对框架的当前版本有什么用。
@EDIT 14.08.2014
对于sails.js> = 0.10的版本,可以设置前缀的配置文件是config/blueprints.js
。它具有与旧版本相同的功能。
@Edit 07.09.2015
据我所知,该框架不支持手动定义路由的全局前缀,但由于您仍然可以在配置文件中使用javascript(因为配置文件是nodeJs模块而不是JSON文件),您可以轻松调整此功能,以便按需使用。
假设您的蓝图配置文件中prefix
属性设置为/api
,您可以在路线中包含此代码。
var blueprintConfig = require('./blueprints');
var ROUTE_PREFIX = blueprintConfig.blueprints.prefix || "";
// add global prefix to manually defined routes
function addGlobalPrefix(routes) {
var paths = Object.keys(routes),
newRoutes = {};
if(ROUTE_PREFIX === "") {
return routes;
}
paths.forEach(function(path) {
var pathParts = path.split(" "),
uri = pathParts.pop(),
prefixedURI = "", newPath = "";
prefixedURI = ROUTE_PREFIX + uri;
pathParts.push(prefixedURI);
newPath = pathParts.join(" ");
// construct the new routes
newRoutes[newPath] = routes[path];
});
return newRoutes;
};
module.exports.routes = addGlobalPrefix({
/***************************************************************************
* *
* Make the view located at `views/homepage.ejs` (or `views/homepage.jade`, *
* etc. depending on your default view engine) your home page. *
* *
* (Alternatively, remove this and add an `index.html` file in your *
* `assets` directory) *
* *
***************************************************************************/
// '/': {
// view: 'homepage'
// },
/***************************************************************************
* *
* Custom routes here... *
* *
* If a request to a URL doesn't match any of the custom routes above, it *
* is matched against Sails route blueprints. See `config/blueprints.js` *
* for configuration options and examples. *
* *
***************************************************************************/
'post /fake': 'FakeController.create',
});
答案 1 :(得分:1)
从版本0.12.x开始,它位于第100行的config / blueprints.js中。相同的规则适用于前面提到的。前缀仅适用于蓝图自动路由,而不是在config / routes.js中手动创建路由。
$(this).val($(this).val() + '*'));
< ----- config / blueprints.js中的第100行
答案 2 :(得分:0)
如果您在config/routes.js
中明确定义路线,请尝试此操作:https://stackoverflow.com/a/42797788/5326603