如何使用Typeahead.js从JSON URL获取特定数据并将其发送到我的过滤器搜索中?

时间:2019-07-30 11:47:14

标签: javascript json url filter typeahead

我正在尝试使用typeahead.js完成过滤器搜索框。我希望在源URL中执行搜索查询。但是,当我在url后面有多个列时,如何实现该目标呢?

select decode(:block.table_item, 1, 'yes', 0, 'no')
  into :block.text_item
  from dual;

现在,我的搜索结果是“未定义”。我想从整个JSON列表中过滤所有标题。 (https://jsonplaceholder.typicode.com/todos

这是typeahead.js尝试过滤搜索结果的方法。现在在搜索框下获取未定义的值:

{
    "userId": 1,
    "id": 1,
    "title": "delectus aut autem",
    "completed": false
  },
  {
    "userId": 1,
    "id": 2,
    "title": "quis ut nam facilis et officia qui",
    "completed": false
  },
  {
    "userId": 1,
    "id": 3,
    "title": "fugiat veniam minus",
    "completed": false
  },

0 个答案:

没有答案