我已经看到了一些可能的解决方案。解决方案1可以正常工作,但是在解决方案2中,它仅重复了我的数组5次。
test: string[]= ['apple', 'banna', 'mango', 'orange', 'pear'];
HTML解决方案1:
<p *ngFor="let x of test; let isLast=last">{{test}} {{isLast ? '' : ','}}</p>
HTML解决方案2
<p *ngFor="let x of test">{{test.join(",")}}</p>
也尝试过此方法,但没有用:
// <p *ngFor="let x of test">{{x.join(",")}}</p>
答案 0 :(得分:6)
有两种方法可以通过使用数组的join()
方法和使用*ngFor
来实现此目的,如下所示
app.component.html
<h1>String Array Demo</h1>
<h2>Solution 1 - Using <code> join() </code> method</h2>
<p>{{test.join(', ')}}</p>
<h2>Solution 2 Using <code> *ngFor </code> directive </h2>
<span *ngFor="let x of test; let i = index">
{{x}} {{i === test.length -1 ? '' : ', ' }}
</span>
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
test: string[] = ['apple', 'banna', 'mango', 'orange', 'pear'];
}
希望这会有所帮助!