如何通过使用从 nodejs 后端获取其变量的 if 函数来显示不同的警报?在我的 html 中:
<div uib-alert ng-repeat="alert in alerts" type="alert.type" close="closeAlert($index)">{{alert.msg}}</div>
在我的 AngularJS 文件中:
$http.get('/test').then(function(result){
this.alerts = function(){
if(result.test != null){
[ { type: 'danger', msg: 'Test is false' }];
}else{
[ { type: 'success', msg: 'Test is right' }];
}
};
}
但这不起作用。任何人都可以帮忙吗?