jquery 自动完成不显示返回的结果

ux6nzvsh  于 2023-05-06  发布在  jQuery
关注(0)|答案(8)|浏览(118)

我无法显示jQuery UI自动完成的结果,尽管php代码返回json结果。jquery代码如下:

$("#newName").autocomplete({
    source: function(request, response) {
        $.ajax({
            url: root + "/assets/php/autocomplete.php",
            dataType: "json",
            data: {
                term : request.term,
                field : "name"
            },
            success: function(data) {
                response(data);
            }
        });
    });

PHP代码是:

while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
    $row_array['value'] = $row[$field];
    array_push($return_arr,$row_array);
}

echo json_encode($return_arr);

在Firebug中检查结果时,我得到如下响应:

[{"value":"jdoe"}]

然而,我从来没有看到一个建议列表显示在html页面。

xcitsw88

xcitsw881#

我通过在我的主css文件中添加自动补全的z索引样式来修复这个问题。现在一切正常。

.ui-autocomplete {
z-index: 100;
}
nlejzf6q

nlejzf6q2#

我也有同样的问题。对于我的解决方案是设置z-index为更高的值像这样

.ui-autocomplete
{
    position:absolute;
    cursor:default;
    z-index:1001 !important
}

某些元素隐藏自动完成表单。(在我的应用程序中)

k5ifujac

k5ifujac3#

在PHP代码中,尝试将'value'改为'label':

while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
    $row_array['label'] = $row[$field];
    array_push($return_arr,$row_array);
}

echo json_encode($return_arr);

我不知道为什么,但似乎这很重要。我将附上为我工作的例子。在我的例子中,我必须通过一个PHP文件从jQuery进行MySQL连接。我想做一个自动完成的领域,你可以写一个用户名,当你点击用户名,相关领域(姓名,姓氏,电子邮件...)填充。下面是我的代码:

HTML代码:

<html lang="en">
      <head>
      <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"   
      </script>
      <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
      <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

      <!--Here there is my jQuery script-->
      <script type="text/javascript" src="scripts/myjQuery.js"></script>

      <title>EXAMPLE AUTOCOMPLETE</title>
   </head>
   <body>
     <h1>CREATING A NEW CASE</h1>         
     <form id='newcase' action="#" method="POST" name="newcase">      

      <label>Add Nickname </label>
      <input class="input-250" type="text" id="nickname" name="nickname"><br/>

      <label>First Name </label>
      <input class="input-250" type="text" id="firstname" name="firstname"><br/>

      <label>Surname </label>
      <input class="input-250" type="text" id="surn" name="surn"><br/>

      <label>Organisation</label>
      <input  class="input-250"type="text" id="organisation" name="organisation"><br/>

      <label>E-Mail Address </label>
      <input class="input-250" type="text" id="email" name="email"><br/>

    </form>
   </body>
 </html>

myjQuery.js:

$(document).ready(function(){

      $('#nickname').autocomplete({

       //Here I call the PHP file and the method inside this file, separated by '/'.
       //You should manage it somehow to make this possible.
     //I have managed it whith a PHP file called index.php, that gets whatever it comes 
    //from the URL after the 'rt' and it separates it by the slash,
   //being the first value the name of the file, and the second value the name of the 
   //method.

     source:'index.php?rt=jscallsController/listNicknameUsers', 
     minLength:1,
     select: function(evt, ui)
     {
      // when a username is selected, populate related fields in this form

        document.getElementById('firstname').value = ui.item.firstname;
        document.getElementById('surn').value  = ui.item.surname;
        document.getElementById('organisation').value  = ui.item.org;
        document.getElementById('email').value  = ui.item.mail;
        }
      });
    });

PHP文件jscallsController.php:

<?php

    class jscallsController{

    public function listNicknameUsers(){

      $hostdb = 'localhost';
      $namedb = 'tests';
      $userdb = 'username';
      $passdb = 'password';

      $term = trim(strip_tags($_GET['term']));

      $users  = 'table_users';

      $data = array();

     try {
      // Connect and create the PDO object
      $conn = new PDO("mysql:host=$hostdb; dbname=$namedb", $userdb, $passdb);

      // Sets encoding UTF-8
      $conn->exec("SET CHARACTER SET utf8");      

      //Define and perform the SQL SELECT query
      $sql = "SELECT u_name, u_fname, u_surname, u_organisation, u_email FROM $users  
              WHERE u_name LIKE '$term%'";
      $result = $conn->query($sql);

      // If the SQL query is succesfully performed ($result not false)
      if($result !== false) {

      // Number of returned rows
      $rows = $result->rowCount();   

      //If exists, returns 1
      if($rows > 0){
          foreach($result as $user) {

          /*The first position of the array needs to be called 'label', 
          otherwise it will not show anything in the HTML field 
          where the autocomplete is done.*/

          $data[] = array(

          'label' => $user['u_name']." (".$user['u_fname']." ".$user['u_surname'].")" ,
          'firstname' =>$user['u_fname'],
           'surname' => $user['u_surname'],
           'org' => $user['u_organisation'],
           'mail' => $user['u_email']
         );
        }
      }
     }
     //Disconnect
     $conn = null;        

     //We send back the array to the jQuery
     echo json_encode($data);
     }
     catch(PDOException $e) {
       echo $e->getMessage();
      }
     }
    }
    ?>
1mrurvl1

1mrurvl14#

试试这个,对我很有效

.ui-front {
    z-index: 1500 !important;
}
cygmwpex

cygmwpex5#

建议使用CSS的答案实际上只是解决问题。根据JQuery Automcomplete API文档,您应该将类ui-front添加到您希望自动完成列表附加到的元素(很可能是#newName元素的父元素),否则它会被放入页面的主体中。
或者,您可以将父节点的id指定为appendTo参数。

6jygbczu

6jygbczu6#

只是想分享一下解决我问题的方法。
这很常见,但可能会帮助其他人。
除了在项目中包含jquery-ui.js之外。始终确保您还包括jquery-ui.css

<link href="Stylesheets/jquery-ui.css" rel="stylesheet" />
<script src="Scripts/jquery-ui.js"></script>
eulz3vhy

eulz3vhy7#

我遇到了这个问题与辅助自动完成文本从一个模态。
第二个包含返回数据的ui-id-2无序列表的display属性设置为none。所以我必须用z索引来更新它。

#ui-id-2.ui-autocomplete.ui-front 
{
  z-index: 99999 !important;
  display: block !important;
}
edqdpe6u

edqdpe6u8#

你试过这个吗?

data: {
    term : request.value,
    field : "name"
},

您的阵列密钥是'value',而不是'term'

相关问题