Mysql
 sql >> Database >  >> RDS >> Mysql

PHP/MySQL migliore ricerca degli utenti

Ho menzionato nei commenti che una libreria typeahead Javascript potrebbe essere una buona scelta per te. Ho trovato la libreria Typeahead di Twitter e il motore Bloodhound piuttosto robusti. Purtroppo la documentazione è un miscuglio:finché quello che ti serve è molto simile ai loro esempi, sei d'oro, ma mancano alcuni dettagli (spiegazioni dei tokenizer, per esempio).

In una delle diverse domande su Typeahead qui su Stack Overflow, @JensAKoch dice:

Francamente, in un breve controllo, la documentazione al fork sembra un po' meglio, se non altro. Potresti voler dare un'occhiata.

Codice lato server:

Si applicano tutte le avvertenze sull'utilizzo di una vecchia versione di PHP. Consiglio vivamente di riorganizzare l'utilizzo di PDO con PHP 5, ma questo esempio utilizza PHP 4 come richiesto.

Codice PHP completamente non testato. json_encode() sarebbe meglio, ma non appare fino a PHP 5. Il tuo endpoint sarebbe qualcosa del tipo:

headers("Content-Type: application/json");
$results = mysql_query(
   "SELECT ID,StageName,AKA1,AKA2,LegalName,SoundEx FROM performers"
);

$fields = array("ID","StageName","AKA1","AKA2","LegalName","SoundEx");

echo "[";

$first =  true;
while ($row = mysql_fetch_array($results)) {
    ($first) ? $first = false : echo ',';

    echo "\n\t,{";
    foreach($fields as $f) {
        echo "\n\t\t\"{$f}\": \"".$row[$f]."\"";
    }
    echo "\n\t}";
}
echo "]";

Codice lato client:

Questo esempio utilizza un file JSON statico come stub per tutti i risultati. Se prevedi che il tuo set di risultati supererà le 1.000 voci, dovresti esaminare il remote opzione di Bloodhound . Ciò richiederebbe la scrittura di un codice PHP personalizzato per gestire la query, ma sembrerebbe in gran parte simile al punto finale che scarica tutti (o almeno i tuoi dati più comuni).

var actors = new Bloodhound({
  // Each row is an object, not a single string, so we have to modify the
  // default datum tokenizer. Pass in the list of object fields to be
  // searchable.
  datumTokenizer: Bloodhound.tokenizers.obj.nonword(
    'StageName','AKA1','AKA2','LegalName','SoundEx'
  ),
  queryTokenizer: Bloodhound.tokenizers.whitespace,
  // URL points to a json file that contains an array of actor JSON objects
  // Visit the link to see details 
  prefetch: 'https://gist.githubusercontent.com/tag/81e4450de8eca805f436b72e6d7d1274/raw/792b3376f63f89d86e10e78d387109f0ad7903fd/dummy_actors.json'
});

// passing in `null` for the `options` arguments will result in the default
// options being used
$('#prefetch .typeahead').typeahead(
    {
        highlight: true
    },
   {
        name: 'actors',
        source: actors,
        templates: {
        empty: "<div class=\"empty-message\">No matches found.</div>",
        
        // This is simply a function that accepts an object.
        // You may wish to consider Handlebars instead.
        suggestion: function(obj) {
            return '<div class="actorItem">'
                + '<span class="itemStageName">'+obj.StageName+"</span>"
                + ', <em>legally</em> <span class="itemLegalName">'+obj.LegalName+"</span>"
        }
        //suggestion: Handlebars.compile('<div><strong>{{value}}</strong> – {{year}}</div>')
      },
      display: "LegalName" // name of object key to display when selected
      // Instead of display, you can use the 'displayKey' option too:
      // displayKey: function(actor) {
      //     return actor.LegalName;
      // }
});
/* These class names can me specified in the Typeahead options hash. I use the defaults here. */
    .tt-suggestion {
        border: 1px dotted gray;
        padding: 4px;
        min-width: 100px;
    }
    .tt-cursor {
        background-color: rgb(255,253,189);
    }
    
    /* These classes are used in the suggestion template */
    .itemStageName {
        font-size: 110%;
    }
    .itemLegalName {
        font-size: 110%;
        color: rgb(51,42,206);
    }
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://twitter.github.io/typeahead.js/releases/latest/typeahead.bundle.js"></script>


<p>Type something here. A good search term might be 'C'.</p>
<div id="prefetch">
  <input class="typeahead" type="text" placeholder="Name">
</div>

Per semplicità, ecco il Gist del codice lato client .