在Angular 2的ng2-tag-input中重新条带化显示的项目,可以通过以下步骤实现:
npm install ng2-tag-input --save
import { TagInputModule } from 'ng2-tag-input';
@NgModule({
imports: [
TagInputModule
]
})
<tag-input [(ngModel)]="tags"></tag-input>
tags: string[] = ['tag1', 'tag2', 'tag3'];
<tag-input [(ngModel)]="tags" [template]="customTemplate"></tag-input>
<ng-template #customTemplate let-item="item">
<span class="tag">{{ item }}</span>
</ng-template>
在上面的例子中,我们定义了一个customTemplate模板,用于自定义标签的显示样式。可以根据需要修改样式。
这样,当标签输入框中的标签发生变化时,ng2-tag-input会自动重新条带化显示项目。
推荐的腾讯云相关产品:腾讯云云服务器(CVM),腾讯云对象存储(COS),腾讯云数据库(TencentDB)等。您可以通过腾讯云官方网站了解更多产品信息和详细介绍。
参考链接:
领取专属 10元无门槛券
手把手带您无忧上云