admin管理员组文章数量:1347397
I've been using Sails.js for quite some time and was wondering if there is a way to manually change the localization from the controllers depending on the url.
Example: will return the English version and
will return the German one.
Thanks for your help!!
I've been using Sails.js for quite some time and was wondering if there is a way to manually change the localization from the controllers depending on the url.
Example: http://example./en
will return the English version and http://example./de
will return the German one.
Thanks for your help!!
Share Improve this question asked Jan 22, 2014 at 21:53 prototypeprototype 3,3132 gold badges29 silver badges43 bronze badges2 Answers
Reset to default 11You can always change the locale in a controller action by using req.setLocale()
or by setting the value of req.locale
. You can also handle this more globally by using a policy:
// config/routes.js
module.export.routes = {
'/:lang/': 'MyController.index',
'/:lang/help': 'MyController.help',
'/:lang/contact': 'MyController.contact',
...etc...
}
// config/policies.js
module.exports.policies = {
'*' : 'localize'
}
// api/policies/localize.js
module.exports = function(req, res, next) {
req.locale=req.param('lang');
next();
};
Update 2020 to @sgress454's answer
// api/policies/localize.js`
module.exports = function(req, res, next) {
// This worked for testing
// You can use req.param('lang') instead of 'in'
req.setLocale('in');
next();
};
本文标签: javascriptSailsjs change localizationStack Overflow
版权声明:本文标题:javascript - Sailsjs change localization - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743836573a2547510.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论