Typeahead Bloodhound,将结果显示为未定义。 JSON 类型错误?

Typeahead Bloodhound, showing results as undefined. Wrong JSON type?

我正在使用 Typeahead 制作自动完成搜索文本框,但下拉结果显示为未定义。 显然 PHP 确实构建了 JSON,我已经测试过了。问题可能是错误的 JSON 类型。 这是 PHP:

$a_json = array();
$a_json_row = array();

while ($row = mysql_fetch_assoc($sql)) {

  //Replaces spaces for +
  $searchTerm = preg_replace('/\s/', '+', $row['products_keyword']);

  $a_json_row["search"] = $searchTerm;
  $a_json_row["label"] = $row['products_keyword'];
  array_push($a_json, $a_json_row);
}

echo json_encode ($a_json); //Return the JSON Array

这是脚本:

$(document).ready(function() {
  var keywordsVar = new Bloodhound({
    datumTokenizer: Bloodhound.tokenizers.obj.whitespace('label'),
    queryTokenizer: Bloodhound.tokenizers.whitespace,
    remote: 'keywords.php?query=%QUERY'

  });

  keywordsVar.initialize();
  $('#idkeywords').typeahead({
    hint: false,
    highlight: true,
    minLenght: 2
  }, {
    name: 'keywords',
    displaykey: 'label',
    source: keywordsVar.ttAdapter()
  });
});

这里是 JSON 的例子:

[{"search":"Artichokes","label":"Artichokes"},
{"search":"Artichokes+2","label":"Artichokes 2"},
{"search":"Artichokes+3","label":"Artichokes 3"}]

谁能找出问题所在??

您在预先声明中有错字。它应该是 displayKey 大写的 k.

这里是Reference