PhantomJS 1.9.7 (Mac OS X) ERROR
Error: [$injector:nomod] Module 'mean.admin' 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.
http://errors.angularjs.org/1.2.20/$injector/nomod?p0=mean.admin
at /Users/terzeron/workspace-js/mango_dev/bower_components/angular/angular.js:1651
해당 패키지의 public 디렉토리에 모듈을 선언하는 코드를 추가해줌
packages/admin/public/admin.js
'use strict';
angular.module('mean.admin', []);
throw new Error(msg);
^
Error: Route.post() requires callback functions but got a [object Undefined]
at /Users/terzeron/workspace-js/mango_dev/node_modules/express/lib/router/route.js:162:15
Error: [ng:areq] Argument 'xxxCtrl' is not a function, got undefined
Error: [$injector:unpr] Unknown provider: KeywordProvider <- Keyword
GET http://dev-server.domain.com:3000/admin/keywords 404 (Not Found)
여러 가지 가능성이 존재함
Uncaught Error: [$injector:modulerr] Failed to instantiate module mean due to: Error: [$injector:modulerr] Failed to instantiate module mean.admin due to: Error: Duplicate parameter name 'keywordId' in pattern '/keywords/:keywordId/details/keywords......
CastError: Cast to ObjectId failed for value "details" at path "_id"
Error: [$resource:badcfg] Error in resource configuration. Expected response to contain an object but got an array
객체 하나가 반환되기를 기대했는데 배열로 반환된 것이므로 로직을 살펴볼 것
OverwriteModelError Cannot overwrite Network model once compiled
디비 스키마가 중복 정의되어 있음
undefined is not a function (in resource factory)
POST http://dev-server.domain.com:3000/notices/53df1643f29ca39e55995557 404 (Not Found)
Uncaught Error: [$injector:modulerr] Failed to instantiate module mean due to:
Error: [$injector:modulerr] Failed to instantiate module angularFileUpload due to:
Error: [$injector:nomod] Module 'angularFileUpload' is not available! You either missp......2)
npm install로 해당 모듈을 설치해준다.