EVOLUTION-MANAGER
Edit File: badmember.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/docs/content/error/$resource/badmember.ngdoc?message=docs(error%2Fbadmember)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <h1>Error: error:badmember <div><span class='hint'>Syntax error in param value using @member lookup</span></div> </h1> <div> <pre class="minerr-errmsg" error-display="Dotted member path "@{0}" is invalid.">Dotted member path "@{0}" is invalid.</pre> </div> <h2>Description</h2> <div class="description"> <p>Occurs when there is a syntax error when attempting to extract a param value from the data object.</p> <p>Here's an example of valid syntax for <code>params</code> or <code>paramsDefault</code>:</p> <pre><code class="lang-javascript">{ bar: '@foo.bar' } </code></pre> <p>The part following the <code>@</code>, <code>foo.bar</code> in this case, should be a simple dotted member lookup using only ASCII identifiers. This error occurs when there is an error in that expression. The following are all syntax errors</p> <table> <thead> <tr> <th>Value</th> <th>Error</th> </tr> </thead> <tbody> <tr> <td><code>@</code></td> <td>Empty expression following <code>@</code>.</td> </tr> <tr> <td><code>@1.a</code></td> <td><code>1</code> is an invalid javascript identifier.</td> </tr> <tr> <td><code>@.a</code></td> <td>Leading <code>.</code> is invalid.</td> </tr> <tr> <td><code>@a[1]</code></td> <td>Only dotted lookups are supported (no index operator)</td> </tr> </tbody> </table> </div>