本文介绍了角翻译的localStorage的:未知提供商:$ translateLocalStorageProvider的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用以及从文件中加载的翻译使用$ translateProvider.useStaticFilesLoader
I'm using angular-translate in my Angular (v1.x) app as well as loading translations from files by using $translateProvider.useStaticFilesLoader
angular.module('myApp',['pascalprecht.translate'])
.config(function($translateProvider) {
$translateProvider.useStaticFilesLoader(
prefix: window.location.pathname.replace(/[\\\/][^\\\/]*$/, '') + '/__languages/', // absolute path + language path
suffix: '.json'
});
// $translateProvider.useLocalStorage();
}
完美角翻译的作品,但是当它涉及到使用:
Angular-translate works perfectly but when it comes to use:
$translateProvider.useLocalStorage();
(在上面的code注释)如本指南rel=\"nofollow\">在。
这篇关于角翻译的localStorage的:未知提供商:$ translateLocalStorageProvider的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!