我正在尝试更新BootStrap标记输入。在标签输入中插入和检索关键字效果很好,但是当我尝试编辑和更新关键字时,它并没有更新。在这里,我曾经在ts中签入console.log()。
我的TypeScript文件
all_prod_keywords;
keyword=["Mobiles","Mixers","Grinders","Tvs","Refrigerators"]
Product_update(id) {
console.log(this.all_prod_keywords)
}
我的HTML
<form class="auto-com">
<div *ngFor="let all_prod_keywords of x.product_tags">
<tag-input name="items" [(ngModel)]="all_prod_keywords">
<tag-input-dropdown
[autocompleteItems]="keyword"
[showDropdownIfEmpty]="false"
[dynamicUpdate]="false"
[appendToBody]="false">
</tag-input-dropdown>
</tag-input>
</div>
</form>
<input type="button" value="update" class="btn btn-warning" (click)="Product_update(x._id)">