我正在尝试将二维数组传递给 Jquery 自动完成输入。
这就是我的标签的样子:(与萤火虫一起拍摄的照片)
还有我用来创建 Array 的代码块:
public function autocompleteAction()
{
$this->_helper->layout()->disableLayout();
$this->getHelper('viewRenderer')->setNoRender();
if (isset($_GET['term'])) {
$q = htmlentities($_GET['term']);
try {
$bdd = new PDO('mysql:host=' . $config->app->url . ';dbname=' . $config->resources->db->dbname, 'root', '');
$bdd->exec('SET CHARACTER SET utf8');
} catch (Exception $e) {
exit('Impossible de se connecter à la base de données.');
}
$requete = "SELECT p.nom,p.winjob_com,p.id_projet,c.titre FROM portail_projet p INNER JOIN portail_client c on c.id_client = p.id_client WHERE p.nom LIKE '%" . $q . "%' OR c.titre LIKE '%" . $q . "%' OR p.winjob_com LIKE '%" . $q . "%' AND p.status = 0";
$resultat = $bdd->query($requete) or die(print_r($bdd->errorInfo()));
$array = array(
);
$i = 0;
while ($donnee = $resultat->fetch()) { // on effectue une boucle pour obtenir les données
$array[$i][0] = $donnee['winjob_com'] . " - " . $donnee['titre'] . " : " . $donnee['nom'] . "\n";
$array[$i][1] = $donnee['id_projet'];
$i++;
}
echo json_encode($array); // il n'y a plus qu'à convertir en JSON
}
}
现在是 JS 部分:
$("#autoCompleteProjets").autocomplete({
source: "/index/autocomplete",
minLength: 1,
select: function( event, ui ) {
console.log(
"Selected: " + ui.item.value + " aka " + ui.item.label
);
}
});
在此先感谢您的帮助。