我正在使用角度翻译插件:https://github.com/angular-translate
我想使用cookie存储。使用
存储首选项时$translateProvider.useCookieStorage();
我看到创建了一个新的cookie并命名为:ng_translate_lang_key。
我可以更改Cookie名称吗?我怎么能这样做?
答案 0 :(得分:3)
这应该适用于最新版本,
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');
答案 1 :(得分:2)
您可以使用方法$translateProvider.storagePrefix()
。