我正在尝试使用 AngularJS 显示一些警报,请参阅http://angular-ui.github.io/bootstrap/ - 警报部分。我想修改示例以仅显示“显示”属性设置为 true 的警报:
$scope.alerts = [
{ type: 'error', msg: 'Oh snap! Change a few things up and try submitting again.', show: true },
{ type: 'success', msg: 'Well done! You successfully read this important alert message.', show: false }
];
在我添加的警报标签中ng-show="alert.show"
,但似乎没有显示任何警报。您可以在此处找到代码:http: //plnkr.co/edit/Qbv4A9u1SnQeJy9o81lK ?p=preview 。
我做错了什么?提前致谢!