24 lines
1.5 KiB
HTML
Executable file
24 lines
1.5 KiB
HTML
Executable file
<a href="http://github.com/angular/angular.js/edit/master/docs/content/error/compile/iscp.ngdoc" class="improve-docs btn btn-primary"><i class="icon-edit"> </i> Improve this doc</a><h1><code ng:non-bindable="">Invalid Isolate Scope Definition</code>
|
|
<div><span class="hint">error in component <code ng:non-bindable="">$compile</code>
|
|
</span>
|
|
</div>
|
|
</h1>
|
|
<div><pre class="minerr-errmsg" error-display="Invalid isolate scope definition for directive '{0}'. Definition: {... {1}: '{2}' ...}">Invalid isolate scope definition for directive '{0}'. Definition: {... {1}: '{2}' ...}</pre>
|
|
<h2 id="Description">Description</h2>
|
|
<div class="description"><div class="-compile-page -compile-iscp-page"><p>When declaring isolate scope the scope definition object must be in specific format which starts with mode character (<code>@&=</code>) with an optional local name.</p>
|
|
<pre><code>myModule.directive('directiveName', function factory() {
|
|
return {
|
|
...
|
|
scope: {
|
|
'attrName': '@', // OK
|
|
'attrName2': '=localName', // OK
|
|
'attrName3': 'name', // ERROR: missing mode @&=
|
|
'attrName4': ' = name', // ERROR: extra spaces
|
|
'attrName5': 'name=', // ERROR: must be prefixed with @&=
|
|
}
|
|
...
|
|
}
|
|
});</code></pre>
|
|
<p>Please refer to the <a href="guide/directive#directivedefinitionobject">directive definition docs</a> to learn more about the api.</p>
|
|
</div></div>
|
|
</div>
|