我使用的是角转换插件:https://github.com/angular-translate
我想用厨艺。存储首选项时使用
$translateProvider.useCookieStorage();我看到一个新的cookie被创建并命名为: ng_translate_lang_key。
我能改一下饼干的名字吗?我该怎么做?
发布于 2014-03-12 11:23:04
有一个方法$translateProvider.storagePrefix(),您可以使用它。
发布于 2015-06-27 20:53:53
这应该适用于最新版本,
storagePrefix :向storageKey添加前缀
// This is the module constant.
angular.module('pascalprecht.translate').constant('$STORAGE_KEY', 'NG_TRANSLATE_LANG_KEY');
// and this is how you can change this constants in your app.config assuming that you they cookie key will be name 'locale'
$translateProvider.storageKey('locale');https://stackoverflow.com/questions/21868935
复制相似问题