knowhow-server
Version:
A personal workflow engine that can manage and use any network connected host
18 lines (17 loc) • 1.28 kB
HTML
<a href="http://github.com/angular/angular.js/edit/master/docs/content/error/parse/isecdom.ngdoc" class="improve-docs btn btn-primary"><i class="icon-edit"> </i> Improve this doc</a><h1><code ng:non-bindable="">Referencing a DOM node in Expression</code>
<div><span class="hint">error in component <code ng:non-bindable="">$parse</code>
</span>
</div>
</h1>
<div><pre class="minerr-errmsg" error-display="Referencing DOM nodes in Angular expressions is disallowed! Expression: {0}">Referencing DOM nodes in Angular expressions is disallowed! Expression: {0}</pre>
<h2 id="description">Description</h2>
<div class="description"><div class="-parse-page -parse-isecdom-page"><p>Occurs when an expression attempts to access a DOM node.</p>
<p>AngularJS restricts access to DOM nodes from within expressions since it's a known way to
execute arbitrary Javascript code.</p>
<p>This check is only performed on object index and function calls in Angular expressions. These are
places that are harder for the developer to guard. Dotted member access (such as a.b.c) does not
perform this check - it's up to the developer to not expose such sensitive and powerful objects
directly on the scope chain.</p>
<p>To resolve this error, avoid access to DOM nodes.</p>
</div></div>
</div>