Angular material 数据 table 未显示服务数据

Angular material data table not displaying service data

我正在尝试在 angular material data-table 中显示一些数据,我的服务 class 方法有数据但它没有在 data-table 中显示,请帮助我,我无法在过去 3 小时

的数据中找到错误-table

服务class和api



getfriendAnswers(id: number): Observable<FriendDetails[]> {
      debugger;
      return this.httpClient.get<FriendDetails[]>(this.apiUrl + '/Questions/yourFriendAnswerdCount/' + id)

   }


[HttpGet, Route("yourFriendAnswerdCount/{id}")]
   public ActionResult getFriendAnswerdCount(int id)
 {
   return Ok(userRepository.getFriendAnswerdCount(id));
  }


好友详情class

export interface FriendDetails {
    Id: number;
    UserId: number;
    AnsweredCount: number;
    FriendName: string;
}

组件class

export class FriendAnswredComponent implements OnInit {
id;
  constructor(private service: UserService,private route: ActivatedRoute) { }

  dataSource :FriendDetails[]=[];

  displayedColumns: string[] = [ 'FriendName', 'AnsweredCount',];

  ngOnInit() {
    this.id = parseInt(this.route.snapshot.paramMap.get('id'));


    this.service.getfriendAnswers(this.id).subscribe(b => {
      debugger;
      this.dataSource = b;

    });
  }

}

material数据-table模板

<mat-card>
  <mat-card-title>your friends answered count questions are</mat-card-title>
  <mat-card-content>

<div *ngIf="dataSource">
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">

<!--- Note that these columns can be defined in any order.
      The actual rendered columns are set as a property on the row definition" -->


<!-- Name Column -->
<ng-container matColumnDef="FriendName">
  <th mat-header-cell *matHeaderCellDef> FriendName </th>
  <td mat-cell *matCellDef="let element"> {{element.FriendName}} </td>
</ng-container>

<!-- Weight Column -->
<ng-container matColumnDef="AnsweredCount">
  <th mat-header-cell *matHeaderCellDef> AnsweredCount </th>
  <td mat-cell *matCellDef="let element"> {{element.AnsweredCount}} </td>
</ng-container>


<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
</div>
</mat-card-content>
</mat-card>
{{dataSource[0]?.AnsweredCount}}

服务returns这个输出
{id: 5, userId: 11, answeredCount: 2, friendName: "sarala"} 我收到空数据 table 甚至服务 returns 数据

AnsweredCount 在您的对象中不存在时,您正试图绑定 dataSource[0]?.AnsweredCount

应该是answeredCount,不是AnsweredCount:

{{dataSource[0]?.answeredCount}}