使用Observable自动更新视图

时间:2017-12-22 14:58:42

标签: javascript angular observable angular-observable

我使用observable和HTTP请求在服务器上添加数据然后更新其他路由。

我希望数据立即更新。实际上我应该刷新页面来获取新数据

在我的服务中,我使用AddProj()getAllProj()函数来获取和发送数据

service.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 repo,我无法重现服务器端,juste正面

我没有错误但我的问题是数据没有自动更新。知道我正在使用Obersables,我应该每次刷新我的页面以获得新的变化。我忘记了什么?

1 个答案:

答案 0 :(得分:0)

如果订阅Obersables并返回它发出的最新值,您可以尝试使用AsyncPipe

  

异步管道订阅Observable或Promise并返回   它发出的最新价值。发出新值时,异步   pipe标记要检查更改的组件。当组件   被破坏,异步管道自动取消订阅以避免   潜在的内存泄漏。