我正在使用这个包https://www.npmjs.com/package/angular2-mentions。所以我的代码是这样的:
.ts file :
ngOnInit():void {
this.items.push("temp Name")
let __this = this
this._userService.getAll(1).subscribe(res => {
res.users.forEach(function (a,b) {
__this.items.push(a)
})
console.log(__this.items)
})
}
.html 文件:
<input type="text" [mention]="items" >
数组已更新并具有来自 api 的数据,但指令 [提及] 绑定到旧数组包含在开始时静态初始化的值!