aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/error/$parse/isecfld.ngdoc
blob: f9acc19d4f3be82bd948fc1bc8f61e9d8d6e0b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@ngdoc error
@name $parse:isecfld
@fullName Referencing 'constructor' Field in Expression
@description

Occurs when an expression attempts to access an objects constructor field.

AngularJS bans constructor access from within expressions since constructor
access is a known way to execute arbitrary Javascript code.

To resolve this error, avoid constructor access.  As a last resort, alias
the constructor and access it through the alias instead.

Example expression that would result in this error:

```
<div>{{user.constructor.name}}</div>
```