在 AngularJS 中,对以下 HTML 的 ng-click 对我不起作用
<tr ng-repeat="ai in alert_instances" ng-click="go('/alert_instance/{{ai.alert_instancne_id}}')">
<td>{{ai.name}}</td>
<td>{{ai.desc}}</td>
</tr>
目前我的控制器中的“go”功能只有
$scope.go = function (hash) {
console.log("hi")
};