php,Jquery自动完成多个值,远程!

时间:2011-02-19 23:54:02

标签: php jquery-ui

是jquery的新手!我在我的应用程序中使用jquery ui autocomplete,其中自动完成值来自数据库。以下是使用但没有任何反应的代码

search.php

<?php

    $conn = mysql_connect("localhost", "root", "");
    mysql_select_db("webforum", $conn);

    $q = strtolower($_GET["term"]);

    $query = mysql_query("select name from groups where name like %$q%");
    while ($row = mysql_fetch_array($query)) {
        echo json_encode($row);
    }
    ?>

这是test.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta  charset="utf-8">
    <title> jQuery UI Autocomplete - Multiple, remote </title>
    <link rel="stylesheet" href="theme/jquery.ui.all.css">
        <script type="text/javascript" src="jquery/jquery-1.4.4.min.js"></script>
    <script type="text/javascript" src="jquery/ui/jquery.ui.core.js"></script>
    <script type="text/javascript" src="jquery/ui/jquery.ui.widget.js"></script>
    <script type="text/javascript" src="jquery/ui/jquery.ui.position.js"></script>
    <script type="text/javascript" src="jquery/ui/jquery.ui.autocomplete.js"></script>
        <style type="text/css">
    .ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; }
    </style>
        <script type="text/javascript">
    $(function() {
        function split( val ) {
            return val.split( /,\s*/ );
        }
        function extractLast( term ) {
            return split( term ).pop();
        }

        $( "#birds" )
            // don't navigate away from the field on tab when selecting an item
            .bind( "keydown", function( event ) {
                if ( event.keyCode === $.ui.keyCode.TAB &&
                        $( this ).data( "autocomplete" ).menu.active ) {
                    event.preventDefault();
                }
            })
            .autocomplete({
                source: function( request, response ) {
                    $.getJSON( "http://localhost/webforum/search.php", {
                        term: extractLast( request.term )
                    }, response );
                },
                search: function() {
                    // custom minLength
                    var term = extractLast( this.value );
                    if ( term.length < 2 ) {
                        return false;
                    }
                },
                focus: function() {
                    // prevent value inserted on focus
                    return false;
                },
                select: function( event, ui ) {
                    var terms = split( this.value );
                    // remove the current input
                    terms.pop();
                    // add the selected item
                    terms.push( ui.item.value );
                    // add placeholder to get the comma-and-space at the end
                    terms.push( "" );
                    this.value = terms.join( ", " );
                    return false;
                }
            });
    });
    </script>
</head>
<body>

<div class="demo">

<div class="ui-widget">
    <label for="birds">Birds: </label>
    <input id="birds" size="50" />
</div>

</div>
</body>
</html>

任何人都可以帮我吗? Thanx提前!

2 个答案:

答案 0 :(得分:1)

你的json是怎样的? 为了使用jquery-ui自动完成功能,您至少需要具有标签和值属性:

{
   'label' : 'your_label',
   'value' : 'your_value'
}

在你的js代码中你要求的值属性似乎没有在php生成的json上设置。

这是一个类似的问题:Having problems with jQuery UI Autocomplete

所以php必须以正确的方式构建结果:

    $conn = mysql_connect("localhost", "root", "");
    mysql_select_db("webforum", $conn);

    $q = strtolower($_GET["term"]);

   $return = array();

    $query = mysql_query("select name from groups where name like %$q%");
    while ($row = mysql_fetch_array($query))
    {
        //since we have just 1 value from the db just use it as both value and label
        array_push($return,array('label'=>$row['name'],'value'=>$row['name']));
    }

   echo(json_encode($return));

P.S。使用$ _GET []参数进行查询并不安全。

答案 1 :(得分:0)

取自jQuery自动填充文档。

  

本地数据可以是一个简单的字符串数组,也可以包含数组中每个项目的对象,带有标签或值属性或两者。 label属性显示在建议菜单中。用户从菜单中选择了某些内容后,该值将插入到input元素中。如果仅指定了一个属性,则它将用于两者,例如。如果仅提供value-properties,则该值也将用作标签。

     

使用String时,Autocomplete插件希望该字符串指向将返回JSON数据的URL资源。它可以位于同一主机上,也可以位于不同的主机上(必须提供JSONP)。请求参数“term”将添加到该URL。数据本身的格式与上述本地数据的格式相同。

假设上述情况;将代码调整为以下内容:

<?php

$conn = mysql_connect("localhost", "root", "");
mysql_select_db("webforum", $conn);

$q = strtolower($_GET["term"]);

$query = mysql_query("select name from groups where name like %$q%");
$results = array();
while ($row = mysql_fetch_array($query)) {
    array_push($results, $row);
}
echo json_encode($results);

?>