我想在标签中设置默认值,似乎标签没有默认值属性..有没有办法这样做..请帮助我.. 。我正在使用此..显示建议,但无法设置默认值。
答案 0 :(得分:3)
在HTML中,试试这个:
[ngModelOptions]="{standalone: true}"
例如:
<p-autoComplete [ngModelOptions]="{standalone: true}" [(ngModel)]="text" [suggestions]="results" (completeMethod)="search($event)"></p-autoComplete>
我在html中添加了这个问题,修复了同样的问题。祝你好运!!!
答案 1 :(得分:0)
试试这个
<p-autoComplete [(ngModel)]="text" [suggestions]="results" (completeMethod)="search($event)"></p-autoComplete>
in component.ts File
this.text = 'yourValue'