Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f627233 commit 49b54b0Copy full SHA for 49b54b0
src/ng/directive/ngRepeat.js
@@ -144,6 +144,11 @@
144
* For example: `item in items | filter:x as results` will store the fragment of the repeated items as `results`, but only after
145
* the items have been processed through the filter.
146
*
147
+ * Please note that `as [variable name] is not an operator but rather a part of ngRepeat micro-syntax so it can be used only at the end
148
+ * (and not as operator, inside an expression).
149
+ *
150
+ * For example: `item in items | filter : x | orderBy : order | limitTo : limit as results` .
151
152
* @example
153
* This example initializes the scope to a list of names and
154
* then uses `ngRepeat` to display every person:
0 commit comments