如何在Ember中创建“过滤器/搜索”下拉列表属性?车把语法

时间:2019-05-12 13:41:07

标签: ember.js

我是Ember的新手。想了解如何在Ember中实现“搜索/过滤器”下拉菜单,如下面的JS中所示。

<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Dropdown</button>
<div id="myDropdown" class="dropdown-content">
    <input type="text" placeholder="Search.." id="myInput" onkeyup="filterFunction()">
    <a href="#about">About</a>
    <a href="#base">Base</a>
    <a href="#blog">Blog</a>
    <a href="#contact">Contact</a>
    <a href="#custom">Custom</a>
    <a href="#support">Support</a>
    <a href="#tools">Tools</a>
</div>

JS看起来像这样

function myFunction() {
  document.getElementById("myDropdown").classList.toggle("show");
}
function filterFunction() {
  var input, filter, ul, li, a, i;
  input = document.getElementById("myInput");
  filter = input.value.toUpperCase();
  div = document.getElementById("myDropdown");
  a = div.getElementsByTagName("a");
  for (i = 0; i < a.length; i++) {
      txtValue = a[i].textContent || a[i].innerText;
      if (txtValue.toUpperCase().indexOf(filter) > -1) {
         a[i].style.display = "";
      }
      else {
         a[i].style.display = "none";
      }
  }
}

仅需要有关模板中的车把语法的帮助。

1 个答案:

答案 0 :(得分:1)

在使用Ember.js时,您不应修改DOM。让余烬做到这一点。 因此,您需要处理组件中的onkeyup事件并过滤值。

我为您准备了一个旋转器,请参阅:ember-twiddle

在这种争论中,我将每个链接定义作为json定义放入component.js中。我还可以使用template.hbs来检查是否过滤了任何链接。

顺便说一句,请检查可能对您有用的当前余烬插件:emberobserver.com例如ember-power-select可能对您有用。