- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 angular-translate 添加到我的 Angular 应用程序中。我遵循了这个简单的快速入门:https://angular-translate.github.io/docs/#/guide ,但我的应用程序无法启动,出现以下错误:
Uncaught Error: [$injector:modulerr] Failed to instantiate module myApp due to: Error: [$injector:modulerr] Failed to instantiate module pascalprecht.translate due to: Error: [$injector:nomod] Module 'pascalprecht.translate' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
我的 index.html 文件正确地包含了 angular-translate,如下所示:
<script src="bower_components/angular-translate/angular-translate.js"></script>
知道为什么会发生这种情况吗?非常感谢您的帮助。
更新
这是我的 app.js 的一部分,以澄清一些事情:
var app = angular.module('myApp', [
'ngAnimate',
'ngCookies',
'ngResource',
'ngSanitize',
'ngTouch',
// 3rd party modules.
'ui.router',
'restangular',
'angular.filter',
'ui.bootstrap',
'pascalprecht.translate',
// Custom modules.
'myApp.config'
])
.
.
.
最佳答案
我遇到了同样的问题,通过添加以下条目解决了它。还要记住将这些 .js 文件按正确顺序放置。
files : [
'../js/libs/angular.js',
'../libs/angular-route.js',
'../angular-translate.min.js',
'../libs/angular-translate-loader-url.js',
希望这对您有所帮助。
问候,阿底提。
关于javascript - 找不到 Angular 翻译模块 'pascalprecht.translate',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30267497/
我正在使用 Angular-translate(PascalPrecht 模块)。 我成功地按照以下示例使其工作:http://www.ng-newsletter.com/posts/angular-
我有一个 AngularJS 应用程序。对于文本翻译,我使用 Angular 翻译。它工作得很好,但是当我请求第一页时,在加载翻译前几秒钟,页面会显示标签。 我已经阅读了一些关于它的帖子http://
我对编程和 Angular 都不熟悉。我需要使用 angular-translate 及其 useUrlLoader,因为我的翻译存储在数据库中。 $translateProvider.useUrlL
我正在尝试将 angular-translate 添加到我的 Angular 应用程序中。我遵循了这个简单的快速入门:https://angular-translate.github.io/docs/
我在使用 SanitizeValueStrategy('sanitize') 时遇到 UTF8 字符问题.我必须使用它,因为客户正在使用语言文件来编辑文本,他可能会使用像 这样的标签。或 ...
我是一名优秀的程序员,十分优秀!