angular-vs-repeat icon indicating copy to clipboard operation
angular-vs-repeat copied to clipboard

Request for object type support in ng-repeat

Open arsinawaz opened this issue 8 years ago • 2 comments

Can you develop and support for object type collection. I really need that.

Thanks in advance.

arsinawaz avatar Mar 08 '16 14:03 arsinawaz

+1

I have error:

TypeError: Cannot read property '1' of null
while iterating over
(id, a) in b

Error is in this

expressionMatches = /^\s*(\S+)\s+in\s+([\S\s]+?)(track\s+by\s+\S+)?$/.exec(ngRepeatExpression);
line

Aknilam avatar Mar 10 '16 10:03 Aknilam

Just change the expression to expressionMatches = /^\s_(\S+._)\s+in\s+([\S\s]+?)(track\s+by\s+\S+)?$/.exec(ngRepeatExpression);

LamaBimal avatar Jul 26 '16 11:07 LamaBimal