ember.js 我如何使用ember-power-select搜索姓名或电子邮件

alen0pnh  于 2022-11-05  发布在  其他
关注(0)|答案(1)|浏览(158)

我正在使用一个插件称为ember电源选择。
Github:https://github.com/cibernox/ember-power-select
要搜索的文档:https://ember-power-select.com/docs/the-search
多个选择的文档:https://ember-power-select.com/docs/multiple-selection/
问:如何使用nameemail进行搜索
/template.hbs

<PowerSelectMultiple
  @searchEnabled={{true}}
  @options={{this.authors}}
  @selected={{this.author}}
  @searchField="email"
  @placeholder="Select some names..."
  @onChange={{fn (mut this.author)}} as |author|>
  {{name}}
</PowerSelectMultiple>

/controller.js

authors = [
    { name: 'Foo', email: 'foo@gmail.com' },
    { name: 'Bar', email: 'bar@gmail.com'},
    { name: 'Baz' email:  'baz@gmai.com'}
  ]
42fyovps

42fyovps1#

第一个
You can refer this link from Power-select DOC's
我不确定searchMethod的返回类型,您可以检查power-select lib并相应地自定义它。

相关问题