0

我尝试从http://www.devbridge.com/projects/autocomplete/jquery/实现这个自动建议

我的 PHP 代码不工作,但查找功能只显示结果。请指导我这件事。

这是我的代码:

$(document).ready(function()
{
    $('#searchresult').autocomplete(
    {
        serviceUrl: 'source.php',
        minChars: 1,
        delimiter: /(,|;)\s*/, // regex or character
        maxHeight: 400,
        zIndex: 9999,
        deferRequestBy: 0, //miliseconds
        noCache: false, //default is false, set to true to disable caching
        // callback function:
        onSelect: function(value, data){ alert('You selected: ' + value + ', ' + data); },
        // local autosugest options:
        lookup: ['January', 'February', 'March', 'April', 'May'] //local lookup values
    });
});

PHP 代码:source.php

<?php

    include "config/config.php";
    require "jsonwrapper/jsonwrapper.php";

    //$term = trim(strip_tags($_GET['term']));//retrieve the search term that autocomplete sends

    //$qstring = "SELECT description as value,id FROM tblcompanies WHERE description LIKE '%".$term."%'";

    $result = mysql_query("SELECT fieldDesc AS value, fieldID AS id FROM table");

    $data = array();
    while ($row = mysql_fetch_array($result))//loop through the retrieved values
    {
        $row['value'] = htmlentities(stripslashes($row['value']));
        $row['id'] = (int)$row['id'];
        $data[] = $row;//build an array
    }

    echo json_encode($data);//format the array into json data

?>

如果您实现这种类型的 jquery 自动建议,请分享。我很高兴有任何建议。

4

2 回答 2

1

如果要使用来自服务器的结果,请删除“查找”选项。

于 2013-02-09T16:53:15.570 回答
0

您的代码看起来不错,但我看到的唯一问题是查找。

可以将 JSON 编码数组传递给 js 进行查找吗?

像这样的东西:

$(document).ready(function()
{
    $('#searchresult').autocomplete(
    {
        serviceUrl: 'source.php',
        minChars: 1,
        delimiter: /(,|;)\s*/, // regex or character
        maxHeight: 400,
        zIndex: 9999,
        deferRequestBy: 0, //miliseconds
        noCache: false, //default is false, set to true to disable caching
        // callback function:
        onSelect: function(value, data){ alert('You selected: ' + value + ', ' + data); },
        // local autosugest options:
        lookup: resultArray
    });
}); 

这里的结果数组是传递给 js 进行查找的 JSON Encode php 数组。

希望在这样做之后它会被修复。

于 2013-09-20T12:53:41.887 回答