我在我的网站上使用这个http://jqueryui.com/demos/autocomplete/#multiple-remote,我可以看到这个代码'searches' search.php 有谁知道search.php应该是什么格式以及它是什么应该是什么样子?
谢谢,
我在我的网站上使用这个http://jqueryui.com/demos/autocomplete/#multiple-remote,我可以看到这个代码'searches' search.php 有谁知道search.php应该是什么格式以及它是什么应该是什么样子?
谢谢,
从您链接的页面中,它会向您显示预期的数据格式。(粘贴在下面) 最简单的方法是,您可以在 search.php 文件中添加一条打印语句,它只是简单地回显一些硬编码的内容。更复杂的解决方案是让您的 search.php 从数据库中实时提取,然后按预期格式化数据。
Expected data format
The data from local data, a url or a callback can come in two variants:
An Array of Strings:
[ "Choice1", "Choice2" ]
An Array of Objects with label and value properties:
[ { label: "Choice1", value: "value1" }, ... ]
所以,只是为了开始并看到它工作,使用这条线搜索.php并通过自定义您的选择或连接到数据库等从那里构建。
print '[ "Choice1", "Choice2" ]';