You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/error/ngRepeat/iexp.ngdoc
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,3 +2,11 @@
2
2
@name ngRepeat:iexp
3
3
@fullName Invalid Expression
4
4
@description
5
+
6
+
Occurs when there is a syntax error in an {@link api/ng.directive:ngRepeat ngRepeat}'s expression. The expression should be in the form '_item_ in _collection_[ track by _id_]'.
7
+
8
+
Be aware, the ngRepeat directive parses the expression using a regex before sending _collection_ and optionally _id_ to the AngularJS parser. This error comes from the regex parsing.
9
+
10
+
To resolve, identify and fix errors in the expression, paying special attention to the 'in' and 'track by' keywords in the expression.
11
+
12
+
Please consult the api documentation of {@link api/ng.directive:ngRepeat ngRepeat} to learn more about valid syntax.
0 commit comments