【发布时间】:2019-04-24 14:17:41
【问题描述】:
我的控制台没有错误,但无法在材料数据表中显示。在代码中查看了一段时间,但无法弄清楚。 我唯一想到的是 API 不正确。 xxxxx 代表 API 的一些 URL。统一我不允许显示真实链接。
restaurant.service.ts
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { Restaurant } from '../models/restaurant.model';
@Injectable({
providedIn: 'root'
})
export class RestaurantService {
private restaurantsUrl = 'https://xxxxxx/getAllServices.php';
constructor(private http: HttpClient) { }
getRestaurants(): Observable<Restaurant[]> {
return this.http.get<Restaurant[]>(this.restaurantsUrl);
}
}
restaurant-table.component.ts
import { Component, ViewChild,OnInit } from '@angular/core';
import { RestaurantService } from '../services/restaurant.service';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/of';
import {DataSource} from '@angular/cdk/collections';
import { Restaurant } from '../models/restaurant.model';
@Component({
selector: 'app-restaurants-table',
templateUrl: './restaurants-table.component.html',
styleUrls: ['./restaurants-table.component.css']
})
export class RestaurantsTableComponent implements OnInit {
dataSource = new RestaurantDataSource(this.restaurantService);
displayedColumns = ['id', 'ime_restorana', 'opis', 'broj_telefona', 'adresa_restorana','edits'];
constructor(private restaurantService: RestaurantService) {
}
ngOnInit() {
}
}
export class RestaurantDataSource extends DataSource<any> {
constructor(private restaurantService: RestaurantService) {
super();
}
connect(): Observable<Restaurant[]> {
return this.restaurantService.getRestaurants();
}
disconnect() {}
}
餐厅-table.component.html
<div class="">
<mat-table [dataSource]="dataSource">
<ng-container matColumnDef="id">
<mat-header-cell *matHeaderCellDef> ID </mat-header-cell>
<mat-cell *matCellDef="let restaurant"> {{ restaurant.id }} </mat-cell>
</ng-container>
<ng-container matColumnDef="ime_restorana">
<mat-header-cell *matHeaderCellDef> Naziv </mat-header-cell>
<mat-cell *matCellDef="let restaurant"> {{ restaurant.ime_restorana }} </mat-cell>
</ng-container>
<ng-container matColumnDef="opis">
<mat-header-cell *matHeaderCellDef> Opis </mat-header-cell>
<mat-cell *matCellDef="let restaurant"> {{ restaurant.opis }} </mat-cell>
</ng-container>
<ng-container matColumnDef="broj_telefona">
<mat-header-cell *matHeaderCellDef> Broj Telefona </mat-header-cell>
<mat-cell *matCellDef="let restaurant"> {{ restaurant.broj_telefona }} </mat-cell>
</ng-container>
<ng-container matColumnDef="adresa_restorana">
<mat-header-cell *matHeaderCellDef> Adresa </mat-header-cell>
<mat-cell *matCellDef="let restaurant"> {{ restaurant.adresa_restorana }} </mat-cell>
</ng-container>
<ng-container matColumnDef="edits">
<th mat-header-cell *matHeaderCellDef></th>
<td mat-cell *matCellDef="let element">
<button mat-raised-button class="edit-btn"><mat-icon>edit</mat-icon></button>
<button mat-raised-button class="edit-btn"><mat-icon>remove_red_eye</mat-icon></button>
</td>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>
</div>
还有 user.model.ts
export interface User {
name: string;
email: string;
phone: string;
company: {
name: string;
}
}
【问题讨论】:
-
getRestaurants()返回一个 Observable。所以试试this.http.get<Restaurant[]>(this.restaurantsUrl).subscribe(res => console.log(res))看看输出。 -
@DaniR 我按照你的建议添加了
this.http.get(this.restaurantsUrl).subscribe(res => console.log(res)),对于输出,我得到了我正在寻找的数组里面的对象。当我输入...console.log(res.restorani)时,我得到了我需要的东西。谢谢你。现在,我真的是 Angular 的新手,所以如果你能告诉我如何将该数组放入 component.ts 中的 dataSource 并将其显示在 component.html 中,我会感到压力
标签: javascript angular typescript frontend