【发布时间】:2017-10-09 17:09:30
【问题描述】:
我正在通过 ng-bootstrap 模式添加我的数据,但我遇到了一个问题,因为当我单击添加按钮时,需要刷新它才能看到新添加的数据。当我成功添加产品时,我已经调用了 this.getMaterials(),但它仍然需要刷新才能看到新添加的数据
export class MaterialsListComponent implements OnInit {
closeResult: string;
materials: any;
subscription: Subscription;
constructor(private modalService: NgbModal, private materialsService: MaterialsService) { }
ngOnInit() {
this.getAllMaterials();
}
getAllMaterials() {
this.subscription = this.materialsService.getAll()
.subscribe(
(data:any) => {
this.materials = data;
console.log(data);
},
error => {
console.log(error);
});
}
onCreateMaterial(form: NgForm){
const name = form.value.name;
const description = form.value.description;
this.materialsService.addMaterial(name, description)
.subscribe(
data => {
this.getAllMaterials();
console.log(data);
},
error => {
console.log(error);
});
}
open(content) {
this.modalService.open(content).result.then((result) => {
this.closeResult = `Closed with: ${result}`;
}, (reason) => {
this.closeResult = `Dismissed ${this.getDismissReason(reason)}`;
});
}
private getDismissReason(reason: any): string {
if (reason === ModalDismissReasons.ESC) {
return 'by pressing ESC';
} else if (reason === ModalDismissReasons.BACKDROP_CLICK) {
return 'by clicking on a backdrop';
} else {
return `with: ${reason}`;
}
}
ngOnDestroy() {
this.subscription.unsubscribe();
}
}
服务
export class MaterialsService {
url = AppSettings;
materials: any;
constructor(private httpClient: HttpClient) {}
getAll() {
if(!this.materials) {
this.materials = this.httpClient.get<any>(this.url)
.map((response => response))
.publishReplay(1)
.refCount();
}
return this.materials;
}
addMaterial(name: string, description: string) {
return this.httpClient
.post(
this.url,
JSON.stringify({ name, description})
)
.map((response: any) => {
return response;
});
}
【问题讨论】:
-
你应该使用 RxJs Subject 来实时刷新数据。 reactivex.io/documentation/subject.html
-
@HaHoang。如果您能帮助我编写代码,那就太好了。谢谢
标签: angular angular-services angular-forms