安装 Angular Material、"Failed to instantiate module ngMaterial",即使我使用的是 angular 版本 1.3.0

Installing Angular Material, "Failed to instantiate module ngMaterial" even though I'm using angular version 1.3.0

这非常令人沮丧,我正在使用 mean.js yeoman 生成的应用程序,但似乎无法启动 angular-material 和 运行。我阅读了另一个关于 Angularjs with material design Failed to instantiate module ngMaterial 问题的 Whosebug 问题。所以我更新了我的 bower.json 文件和 运行 一个 bower updatebower install。它仍然不起作用。在 bower 更新期间,bower 给了我这条消息 Unable to find a suitable version for angular, please choose one:,但我总是选择 Angular 版本 1.3.0 或更高版本。
这是我的 bower.json 的副本:

{
  "name": "colign",
  "version": "0.0.1",
  "description": "Full-Stack JavaScript with MongoDB, Express, AngularJS, and Node.js",
  "dependencies": {
    "bootstrap": "~3",
    "angular": "~1.3",
    "angular-resource": "~1.3",
    "angular-mocks": "~1.3",
    "angular-bootstrap": "~0.11.2",
    "angular-ui-utils": "~0.1.1",
    "angular-ui-router": "~0.2.11",
    "angular-material": "~0.10.0"
  }
}

控制台错误信息如下: 错误:[$injector:modulerr] 由于以下原因无法实例化模块 ngMaterial: 错误:[$injector:nomod] 模块 'ngMaterial' 不可用!您要么拼错了模块名称,要么忘记加载它。如果注册模块,请确保将依赖项指定为第二个参数。

Angular config.js 文件:

'use strict';

// Init the application configuration module for AngularJS application
var ApplicationConfiguration = (function() {
    // Init module configuration options
    var applicationModuleName = 'colign';
    var applicationModuleVendorDependencies = ['ngResource', 'ui.router', 'ui.bootstrap', 'ui.utils', 'ngMaterial'];

    // Add a new vertical module
    var registerModule = function(moduleName, dependencies) {
        // Create angular module
        angular.module(moduleName, dependencies || []);

        // Add the module to the AngularJS configuration file
        angular.module(applicationModuleName).requires.push(moduleName);
    };

    return {
        applicationModuleName: applicationModuleName,
        applicationModuleVendorDependencies: applicationModuleVendorDependencies,
        registerModule: registerModule
    };
})();

在此先感谢您的帮助!

Angular material、ngMaterial 也依赖于 ngAriangAnimate。您需要加载它们。

angular.module('ngMaterial', ["ng","ngAnimate","ngAria", ...other material sub modules

您可以从 angular aria and angular animate 下载它。根据您的 angular 版本使用正确的版本。

此外,仅在项目中添加脚本是不够的,您还需要将它们加载到您的 html 中。还要在 ng-material 脚本之前加载它们。