drqrdkfue521903877 2016-01-08 05:40
浏览 45
已采纳

Select2 Ajax不匹配结果

My Select2 form is using ajax to load results from the database, but on the front end the the select2 search is returning all results and not the results specific to the search term. After doing some research I realized that the matcher has to be on the server side, but I can't seem to get it working. Here is my code

Code to query the database and return json data

<?php

  $servername = "localhost";
  $username = "myusername";
  $password = "mypassword";

   try {
$conn = new PDO("mysql:host=$servername;dbname=mydatabase", $username, $password);
// set the PDO error mode to exception
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
   }
    catch(PDOException $e)
   {
   echo "Connection failed: " . $e->getMessage();
   }



  // strip tags may not be the best method for your project to apply extra 
   layer of security but fits needs for this tutorial 
   $search = strip_tags(trim($_GET['q'])); 

 // Do Prepared Query
   $query = $conn->prepare("
   SELECT * FROM (
    SELECT wp_terms.name
   FROM wp_terms
   JOIN wp_term_taxonomy
    ON wp_term_taxonomy.term_id = wp_terms.term_id
    WHERE taxonomy = 'job_listing_region'
    AND count = 0
    ) as T"
     );

    // Add a wildcard search to the search variable
     $query->execute(array(':search'=>"%".$search."%"));


   // Do a quick fetchall on the results
    $list = $query->fetchall(PDO::FETCH_ASSOC);

   // Make sure we have a result
   if(count($list) > 0){
    foreach ($list as $key => $value) {
    $data[] = array('id' => $value['name'], 'text' => $value['name']);              
   } 
    } else {
   $data[] = array('id' => '0', 'text' => 'No Products Found');
   }


// return the result in json
echo json_encode($data);

My jquery

<script>
 jQuery(function($) {
 $(document).ready(function() {
     function matchStart (term, text) {
  if (text.toUpperCase().indexOf(term.toUpperCase()) == 0) {
    return true;
  }

  return false;
}
$( "#regions1" ).select2({        
    ajax: {
        url: "/ajax/connect.php",
        dataType: 'json',
        delay: 250,
        data: function (params) {
            return {
                q: params.term // search term
            };
        },
        processResults: function (data) {
    return {
        results: $.map(data, function(obj) {
            return { id: obj.id, text: obj.text };

            })

        };

        }


},
  minimumInputLength: 3,
  width: "300px",
  placeholder: "Please Select Up To Four Additional Cities"

 });

    });
 });
</script>

and here is an example of my json results

[{"id":"Abanda, AL","text":"Abanda, AL"},{"id":"Abbeville, AL","text":"Abbeville, AL"},{"id":"Adak, AK","text":"Adak, AK"},

Search term not matching results

  • 写回答

1条回答 默认 最新

  • dougu1990 2016-01-08 06:03
    关注

    you have not mentioned the like condition in your sql statement.

    your sql should be something like this

    $query = $conn->prepare("
       SELECT * FROM (
        SELECT wp_terms.name
       FROM wp_terms
       JOIN wp_term_taxonomy
        ON wp_term_taxonomy.term_id = wp_terms.term_id
        WHERE taxonomy = 'job_listing_region'
        AND count = 0 AND search_column LIKE ?    <==== this line
        ) as T"
         );
    
    $query->execute(array("%".$search."%"));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥170 如图所示配置eNSP
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上