EVOLUTION-MANAGER
Edit File: isecff.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/docs/content/error/$parse/isecff.ngdoc?message=docs(error%2Fisecff)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <h1>Error: error:isecff <div><span class='hint'>Referencing 'call', 'apply' and 'bind' Disallowed</span></div> </h1> <div> <pre class="minerr-errmsg" error-display="Referencing call, apply or bind in Angular expressions is disallowed! Expression: {0}">Referencing call, apply or bind in Angular expressions is disallowed! Expression: {0}</pre> </div> <h2>Description</h2> <div class="description"> <p>Occurs when an expression attempts to invoke Function's 'call', 'apply' or 'bind'.</p> <p>Angular bans the invocation of 'call', 'apply' and 'bind' from within expressions since access is a known way to modify the behaviour of existing functions.</p> <p>To resolve this error, avoid using these methods in expressions.</p> <p>Example expression that would result in this error:</p> <pre><code><div>{{user.sendInfo.call({}, true)}}</div> </code></pre> </div>