Мне захотелось настроить префикс ngstorage в моем преднагруженном угловом инжекторе.
angular.element(document).ready(function() {
var
initInjector = angular.injector(['ng', 'ngStorage']),
$http = initInjector.get('$http'),
$localStorage = initInjector.get('$localStorage'),
$localStorageProvider = initInjector.get('$localStorageProvider'),
storage = $localStorage.$default({
configuration: {},
configurationExpireDate: new Date()
})
;
// initInjector.config(function() { $localStorageProvider.setKeyPrefix('CT'); }); // not working
$localStorageProvider.setKeyPrefix('CT'); // not working, too
}
Так может быть, вы знаете, как настроить ngstorage префикса перед «реальным» приложением бутстрапированное программно.
Спасибо!
Что вы имеете в виду, если не работаете? Какая ошибка бросает? – SSG