1
我有這樣一段代碼:函數調用不正確渲染
<tr ng-repeat="convention in conventions">
<td>{{ convention.Id }}</td>
<td>{{ convention.Title }}</td>
<td><a href="javascript:void(0)" ng-click="alert(convention.Id)">Edit</a></td>
</tr>
我想調用一個函數像alert
並通過Id
爲parameter.but它不能正常顯示:
有什麼建議嗎?
'NG點擊= 「JavaScript的:警報(convention.Id)」' –
可能的[使用警報從的NG-點擊複製指令(http://stackoverflow.com/questions/25907383/use-alert-from-ng-click-of-a-directive) – potatopeelings