我有 company.component.ts 和 company.component.html
我有 companyDeatials.component.ts 和 companyDeatials.html
company.component.html
<div class="container">
<div *ngFor = "let company of companies" >
<div class="card card-1 " id="wrapper" routerLink='/company-detail/{{company["_id"]}}' >
<label class="center">
{{company["comapny_name"]}}
</label>
</div>
</div>