角度函数错误:[$ parse:syntax]

时间:2014-08-11 10:01:19

标签: angularjs angularjs-ng-repeat

错误消息是

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"> 

使用代码是

<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>

该函数实际上采用列表数组中的两个Arguments。但我不知道该怎么做。

5 个答案:

答案 0 :(得分:13)

试试这个:

<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>

希望它有帮助.....!

答案 1 :(得分:1)

这对我有用。我只拿出了括号。

像这样:Fedit({{list.type}},{{list.id}}) - &gt; Fedit(list.type,list.id)

坦克。

答案 2 :(得分:1)

检查此链接$parse:syntax

在我的情况下,当我在角度表达式上使用,时会显示此错误

致谢

答案 3 :(得分:0)

ng-repeat有它自己的范围和属性绑定,因为你提供的不起作用 - {{list.type}}只需要list.type和{{list.id}}成为列表。标识。

请参阅this

答案 4 :(得分:0)

在我的情况下,角度表达式中有一个多余的空格:

{{Student.Enrollment Date}}

正确的一个:

{{Student.EnrollmentDate}}