我有一个表格单元格,显示是否有超过10条记录。部分我的分页。
<td ng-show="totalRecords>10" colspan="5">
<ul uib-pagination style="margin:0;" total-items="totalRecords" ng-model="currentPage" ng-change="pageChanged()"></ul>
</td>
非常简单。但这里很疯狂 - 它在Chrome中引发了以下错误:
Uncaught Error: Syntax error, unrecognized expression: td[ng-show='totalRecords @ browserLink:37
bc.error @ browserLink:37
bh @ browserLink:37
bp @ browserLink:37
...etc
我会注意到$scope.totalRecords
在控制器中设置为零(0
)。将其设置为其他值不会改变任何内容。控制器中的其他所有工作都完美无缺。
以下方案不会引发任何错误:
<td ng-show="totalRecords=10" colspan="5">...</td>
<td ng-show="totalRecords<10" colspan="5">...</td>
<td ng-show="totalRecords>9" colspan="5">...</td>
<td ng-show="totalRecords>=11" colspan="5">...</td>
<td ng-show="totalRecords" colspan="5">...</td>
任何人都猜到了为什么?
答案 0 :(得分:3)
问题在于Visual Studio&#34;浏览器链接&#34;可能导致AngularJS出现问题的功能。根据我对您遇到的错误进行的一些研究,似乎人们建议在Visual Studio中禁用浏览器链接功能。
以下链接包含您对错误的类似说明以及一些禁用浏览器链接功能的方法: