admin管理员组文章数量:1344319
The full error is:
Error: [$parse:syntax] Syntax Error: Token ',' not a primary expression
The piece of code causing the error is:
<div ng-repeat="item in items">
<input type="submit" ng-click="delete({{item.itemId}},$index)" value="delete">
</div>
The function actually works for previous items but breaks when I try a new item to my item array. The problem child appears to be the ma, but I do not know what to do.
The full error is:
Error: [$parse:syntax] Syntax Error: Token ',' not a primary expression
The piece of code causing the error is:
<div ng-repeat="item in items">
<input type="submit" ng-click="delete({{item.itemId}},$index)" value="delete">
</div>
The function actually works for previous items but breaks when I try a new item to my item array. The problem child appears to be the ma, but I do not know what to do.
Share Improve this question asked Oct 24, 2013 at 16:58 ConquerorConqueror 4,4738 gold badges36 silver badges42 bronze badges 2-
please post your model
items
– Maxim Shoustin Commented Oct 24, 2013 at 17:04 - Thanks I found that the error had to do with a function on my factory. – Conqueror Commented Oct 24, 2013 at 18:53
1 Answer
Reset to default 10You don't need to wrap item.itemId
in {{}}
. Just do:
ng-click="delete(item.itemId, $index)"
You only need to wrap in braces when using Angular's templating system - the braces tell Angular to replace the value. In this case, the value of ng-click is an expression that is evaluated (within the scope of your controller) when a click event occurs.
Demo Fiddle
本文标签: javascriptAngular function with two parameters having Error parsesyntaxStack Overflow
版权声明:本文标题:javascript - Angular function with two parameters having Error: [$parse:syntax] - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743796893a2540594.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论