ngx-select取类型值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ngx-select取类型值相关的知识,希望对你有一定的参考价值。

<ngx-select #drop [items]="dropdownReci" [(ngModel)]="values">
        <ng-template ngx-select-option-not-found>
          There is no result, <button (click)="add(drop.value)"><b>add it</b></button>.
        </ng-template>
</ngx-select>

当ngx-select搜索找不到任何东西时,我试图取值,所以我可以添加它。我有“值”数组,如果我选择搜索字符串。我怎么能得到当下键入的价值?

答案

在ngx-select我补充说:

(keyup)="onKeyUp($event)"

在component.ts中我补充说:

val: string = "";
onKeyUp(event): void {
    event.stopPropagation();

    const key = event.key;
    const value = event.target.value;
    this.val= value;
  }

现在在“keyup”事件中,我逐字逐句地把它放在val中,所以如果我没有结果点击添加我会将该val添加到string []。

以上是关于ngx-select取类型值的主要内容,如果未能解决你的问题,请参考以下文章

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

使用片段返回堆栈处理 ActionBar 标题?

scrapy按顺序启动多个爬虫代码片段(python3)

方法

13 个非常有用的 Python 代码片段

在代码片段中包含类型转换