36 lines
2.3 KiB
HTML
Executable file
36 lines
2.3 KiB
HTML
Executable file
<a href="http://github.com/angular/angular.js/edit/master/docs/content/error/compile/ctreq.ngdoc" class="improve-docs btn btn-primary"><i class="icon-edit"> </i> Improve this doc</a><h1><code ng:non-bindable="">Missing Required Controller</code>
|
|
<div><span class="hint">error in component <code ng:non-bindable="">$compile</code>
|
|
</span>
|
|
</div>
|
|
</h1>
|
|
<div><pre class="minerr-errmsg" error-display="Controller '{0}', required by directive '{1}', can't be found!">Controller '{0}', required by directive '{1}', can't be found!</pre>
|
|
<h2 id="Description">Description</h2>
|
|
<div class="description"><div class="-compile-page -compile-ctreq-page"><p>This error occurs when <a href="api/ng.$compile"><code>template compiler</code></a> tries process the directive that specifies the <code>require</code> option in a <a href="guide/directive#directivedefinitionobject">directive definition</a>,
|
|
but the required directive controller is not present on the current DOM element (or its ancestor element, if <code>^</code> was specified).</p>
|
|
<p>To resolve this error ensure that there is no typo in the required controller name and that the required directive controller is present on the current element.</p>
|
|
<p>If the required controller is expected to be on a ancestor element, make ensure that you prefix the controller name in the <code>require</code> definition with <code>^</code>.</p>
|
|
<p>If the required controller is optionally requested, use <code>?</code> or <code>^?</code> to specify that.</p>
|
|
<p>Example of a directive that requires <a href="api/ng.directive:ngModel"><code>ngModel</code></a> controller:</p>
|
|
<pre><code>myApp.directive('myDirective', function() {
|
|
return {
|
|
require: 'ngModel',
|
|
...
|
|
}
|
|
}</code></pre>
|
|
<p>This directive can then be used as:</p>
|
|
<pre><code><input ng-model="some.path" my-directive></code></pre>
|
|
<p>Example of a directive that optionally requires a <a href="api/ng.directive:form"><code>form</code></a> controller from an ancestor:</p>
|
|
<pre><code>myApp.directive('myDirective', function() {
|
|
return {
|
|
require: '^?form',
|
|
...
|
|
}
|
|
}</code></pre>
|
|
<p>This directive can then be used as:</p>
|
|
<pre><code><form name="myForm">
|
|
<div>
|
|
<span my-directive></span>
|
|
</div>
|
|
</form></code></pre>
|
|
</div></div>
|
|
</div>
|