Error Message is
Error: [$parse:syntax] http://errors.angularjs.org/1.3.0-beta.13/$parse/syntax?p0=list.type&p1=is%20unexpected%2C%20expecting%20%5B%3A%5D&p2=9&p3=Fedit(%7B%7Blist.type%7D%7D%2C%7B%7Blist.id%7D%7D)&p4=list.type%7D%7D%2C%7B%7Blist.id%7D%7D)
at Error (native)
at http://127.0.1.1/AnjularJS/ng-Films/Scripts/Vendor/angular.min.js:6:457
at bb.throwError (http://127.0.1.1/AnjularJS/ng-Films/Scripts/Vendor/angular.min.js:169:490)
at bb.consume (http://127.0.1.1/AnjularJS/ng-Films/Scripts/Vendor/angular.min.js:170:424)
at bb.object (http://127.0.1.1/AnjularJS/ng-Films/Scripts/Vendor/angular.min.js:177:474)
at bb.primary (http://127.0.1.1/AnjularJS/ng-Films/Scripts/Vendor/angular.min.js:169:121)
at bb.unary (http://127.0.1.1/AnjularJS/ng-Films/Scripts/Vendor/angular.min.js:175:273)
at bb.multiplicative (http://127.0.1.1/AnjularJS/ng-Films/Scripts/Vendor/angular.min.js:175:6)
at bb.additive (http://127.0.1.1/AnjularJS/ng-Films/Scripts/Vendor/angular.min.js:174:399)
at bb.relational (http://127.0.1.1/AnjularJS/ng-Films/Scripts/Vendor/angular.min.js:174:263) <button ng-click="Fedit({{list.type}},{{list.id}})" class="btn btn-primary">
using the code is
<tbody ng-repeat="list in lists">
<tr>
<td>
<button ng-click="Fedit({{list.type}},{{list.id}})" class="btn btn-primary">Edit</button>
</td>
<td>
<button ng-click="Fdelete({{list.type}},{{list.id}})" class="btn btn-primary">Delete</button>
</td>
</tr>
</tbody>
The function actually take the two Arguments in list array. but I do not know what to do.
Try this:
<tbody ng-repeat="list in lists">
<tr>
<td>
<button ng-click="Fedit(list.type,list.id)" class="btn btn-primary">Edit</button>
</td>
<td>
<button ng-click="Fdelete(list.type,list.id)" class="btn btn-primary">Delete</button>
</td>
</tr>
</tbody>
Hope it helps.....!
This worked for me. I only took out the brackets.
Like this: Fedit({{list.type}},{{list.id}}) --> Fedit(list.type,list.id)
Tanks.
Check this link $parse:syntax
In my case this error is showing when I use ,
on angular expressions
Regards
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With