Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Including doc for personal newbie error case. #11030

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/content/error/$injector/unpr.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,16 @@ angular.module('myModule', [])
```

Use the `$controller` service if you want to instantiate controllers yourself.

Attempting to inject a scope object anything that´s not a controller or a directive,
for example a service, will also throw an `Unknown provider` error:
or mistakenly registering your controller as a service( believe me, it happens) an expecting
a scope injection.

```
angular.module('myModule', [])
.service('MyController', ['$scope', function($scope) {
// This controller throws an unknown provider error because
// a scope object cannot be injected into a service.
}]);
```