我想在用戶保存數據時顯示引導警報。使用angular2顯示引導警報
我的代碼如下:
html頁面:
<div class="alert alert-success" *ngIf="saveSuccess">
<strong>Success!</strong>
</div>
<form #f="ngForm" (submit)="saveUser(f.value)">
/////Some form fields
<button class="form-control btn btn-primary" type="submit">save</button>
</form>
app.component.ts:
export class UserProfileComponent{
saveSuccess: boolean;
user: IUser;
saveUser(user:IUser) {
this.headers = new Headers();
this.headers.append('Content-Type', 'application/json');
this.editUserForm = user;
this._http.post('api/user/'+this._current_user._id, JSON.stringify(this.editUserForm),{
headers: this.headers
}).subscribe(function(data) {
// if the update is successful then set the value to true
// this is getting updated
if (data){
this.saveSuccess = true;
}
else{
this.saveSuccess = false;
}
});
}
}
我想要顯示的警報時,成功的POST完成。
我想我錯過了如何將'saveSuccess'變量綁定到html,以便在成功保存完成後顯示警報。 (我是Angular2的新手)
看起來好像沒什麼問題 - 什麼不起作用?控制檯中的任何錯誤? – rinukkusu
沒有錯誤。我不認爲這會給錯誤。由於'saveSuccess'變量正在更新並取決於'div'將被顯示。 – Pradeepb
@Pradeepb這種方法對我不起作用。如果可能的話,你可以分享掠奪者嗎? –