Jqueryの自動完了機能を使用してSQLテーブルからデータを取得しようとしていますが、データを正しく検索してもドロップダウンボックスでグラフィカルに表示されません。jQueryオートコンプリートデータが返されましたが表示されません
私search.ctp
<?php use Cake\Routing\Router; ?>
<?php echo $this->Form->input('id', ['type' => 'text']); ?>
<script>
jQuery('#id').autocomplete({
source:'<?php echo Router::url(array('controller' => 'Invoices', 'action' => 'search')); ?>'
});
</script>
私の検索機能
public function search()
{
if ($this->request->is('ajax'))
{
$name = $this->request->query['term'];
$resultArr = $this
->Invoices
->find()
->where(
['Invoices.id LIKE' => ($name . '%')],
['Invoices.id' => 'string']
);
$resultsArr = [];
foreach ($resultArr as $result) {
$resultsArr[] = (strval($result['id']));
}
$this->set('invoices', $resultsArr);
// This line is what handles converting your array into json
// To get this to work you must load the request handler
$this->set('_serialize', ['invoices']);
}
}
あなたはそれがダウンしたデータが、ノードロップを返して見ることができるように。
また、受信側でjson解析を行う可能性が高い「何かjson」というものがたくさん返されているように見えます。 – IncredibleHat
@Randallは私の悪いことを忘れてしまいました。 –
これは奇妙なことです。オートコンプリートの基本的な動作は、選択したフィールドの下にあるdivをタックすることだけです。あなたが何かをタイプすると、サーバにはっきりと当たってしまい、サーバはアイテムのjson配列を返しています。だから...私の唯一の推測は、選択肢の表示と競合する可能性のあるCSSがありますか? – IncredibleHat