我已經複製了角度Uis示例,但它並未關閉。 儘管我的關閉函數被稱爲等,並已嘗試將警報設置爲空手動,沒有運氣。Angular UI Bootstrap警報未關閉
HTML:
<alert ng-repeat="alert in cantVoteWhenNotLoggedInAlerts"
type="alert.type"
close="closeCantVoteWhenNotLoggedInAlert($index)">{{ alert.msg }
</alert>
的JavaScript:
//add
$scope.cantVoteWhenNotLoggedInAlerts.push({
type: 'warning',
msg: 'Must be logged in'
});
$scope.closeCantVoteWhenNotLoggedInAlert = function (index) {
$scope.cantVoteWhenNotLoggedInAlerts.splice(index, 1);
};
這似乎好,你可以發佈的jsfiddle? – rajasaur
您的代碼有效。這是Js小提琴。 https://jsfiddle.net/alaksandarjesus/j9ks1uc6/ –