我使用 observable 和 HTTP 请求在服务器上添加数据,然后更新其他路由。
我希望这些数据立即更新。实际上我应该刷新页面以获取新数据
在我的服务中,我使用AddProj()
和getAllProj()
函数来获取和发送数据
服务.ts
import { Injectable } from "@angular/core";
import { NouveauProjet } from "./models/nouveau-projet";
import { HttpClient, HttpResponse } from "@angular/common/http";
import { Observable } from "rxjs/Observable";
import "rxjs/add/operator/map";
import "rxjs/add/operator/catch";
@Injectable()
export class AjoutprojService {
apiURL = "http://127.0.0.1:8080/api/proj/projets";
constructor(private http: HttpClient) {}
getAllProj(): Observable<NouveauProjet[]> {
return this.http.get<NouveauProjet[]>(
"http://127.0.0.1:8081/api/proj/projets"
);
}
addProj(nouveauProjet: NouveauProjet): Observable<any> {
return this.http.post<NouveauProjet[]>(
"http://127.0.0.1:8081/api/proj/projets",
nouveauProjet
);
}
}
在ajoutproj.ts我把数据addProjet()
addProjet() {
this.nouveauProjet = {
...this.firstFormGroup.value,
...this.secondFormGroup.value,
...this.thirdFormGroup.value
};
this.ajoutProj
.addProj(this.nouveauProjet)
.toPromise()
.then(res => {
console.log(res.message);
});
}
在我的listprojects.ts文件中,我使用getAllProj()
import { Component, OnInit } from "@angular/core";
import { MatTableDataSource } from "@angular/material";
import { AjoutprojService } from "../ajoutproj.service";
import { NouveauProjet } from "../models/nouveau-projet";
@Component({
selector: "app-liste-projets",
templateUrl: "./liste-projets.component.html",
styleUrls: ["./liste-projets.component.css"]
})
export class ListeProjetsComponent implements OnInit {
constructor(private ajoutProj: AjoutprojService) {}
nouveauProjet: NouveauProjet[];
stateExression: string = "inactive";
ngOnInit() {
this.getAllProj();
}
displayedColumns = ["Nom projet", "Lead Projet", "effectif"];
dataSource = new MatTableDataSource<NouveauProjet>(this.nouveauProjet);
applyFilter(filterValue: string) {
filterValue = filterValue.trim(); // Remove whitespace
filterValue = filterValue.toLowerCase(); // MatTableDataSource defaults to lowercase matches
this.dataSource.filter = filterValue;
}
getAllProj() {
this.ajoutProj.getAllProj().subscribe(
response => {
this.dataSource = new MatTableDataSource<NouveauProjet>(response);
},
error => console.log(error)
);
}
}
更新我添加我的模板:
<div class="example-container mat-elevation-z8">
<div class="example-header">
<mat-form-field>
<input matInput (keyup)="applyFilter($event.target.value)" placeholder="Filter">
</mat-form-field>
</div>
<mat-table #table [dataSource]="dataSource">
<ng-container matColumnDef="Nom projet">
<mat-header-cell *matHeaderCellDef> Nom projet </mat-header-cell>
<mat-cell *matCellDef="let nouveauProjet"> {{nouveauProjet.nomProj }} </mat-cell>
</ng-container>
<ng-container matColumnDef="Lead Projet">
<mat-header-cell *matHeaderCellDef> Lead Projet </mat-header-cell>
<mat-cell *matCellDef="let nouveauProjet"> {{nouveauProjet.leadProj }} </mat-cell>
</ng-container>
<ng-container matColumnDef="effectif">
<mat-header-cell *matHeaderCellDef> effectif </mat-header-cell>
<mat-cell *matCellDef="let nouveauProjet"> {{nouveauProjet.pers.length }} </mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>
</div>
更新 2:我做了一个 stackblitz回购,我无法重现服务器端,只是前端
我没有错误,但我的问题是数据不会自动更新。我应该每次都刷新我的页面以获得新的更改,因为我知道我正在使用 Obersables。我忘记了什么?