使用 ng-route 时,清单模型模块不起作用

checklist-model module does not work when using ng-route

我试图在我的应用程序中使用 [checklist-model] (https://github.com/vitalets/checklist-model) 模块,但我发现了一个错误,我发现这是因为在同一个应用程序中使用 (ngRoute) 模块。

var mainMod = angular.module('MainApp', ['ngRoute'],['checklist-model']);

mainMod.config(['$routeProvider',function($routeProvider) {

        $routeProvider
            .when("/patient-list", {
                templateUrl: "patient-list.html",
                            controller: "dbCtrl"

            })
            .when("/patientRecord", {
                templateUrl: "patientRecord.html",
                controller: "MainCtrl2"
            })
            .otherwise({
                templateUrl: "patient-list.html",
                            controller: "dbCtrl"

            })

    }

]);

错误:

angular.min.js:6Uncaught Error: [$injector:modulerr] http://errors.angularjs.org/1.2.24/$injector/modulerr?p0=MainApp&p1=Error%3…%20gc%20(http%3A%2F%2Flocalhost%2Ftest%2Ffiles%2Fangular.min.js%3A36%3A309)

如果有任何解决方案,我将很高兴知道。

感谢您的努力

第二个参数应该是所有依赖项的数组。请尝试 angular.module('MainApp', ['ngRoute', 'checklist-module']);

此外,在您的开发工作中使用未缩小的版本会产生更有用的错误消息。