简体   繁体   中英

Angular material data table not displaying service data

I'm trying to display some data in angular material data-table,my service class method has data but its not displaying in data-table, please help me ,am unable to find mistake in data-table from last 3 hours

service class and 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));
  }


friend details class

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

component 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 data-table template

<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}}

service returns this output
{id: 5, userId: 11, answeredCount: 2, friendName: "sarala"} I'm getting empty data table even service returns data

you are trying to bind dataSource[0]?.AnsweredCount when AnsweredCount does not exist in your object.

It should be a nsweredCount, not A nsweredCount:

{{dataSource[0]?.answeredCount}}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM