オートコンプリート フィールドから id 値を送信しようとしています...これまでのところ、フォームにこのようなものがあり、何かを入力するとクエリの結果を取得できます..
require_once("../classes/classmodels.php");
$tra=new Aggrekomodels();
if(isset($_GET['client']))
die (json_encode($tra->get_proyectos_clientes($_REQUEST['term'])));
<form id="formempl">
<input type="text" name="client" id="autoclient" />
<input id="add" type="submit" />
</form>
今、私がやりたいことは、オートコンプリートのテキストの代わりに _id_employee_ を送信することです。これまでのところ、私はこれを私のjsに持っています。
function autocompleteProjects(){
$( "#autoclient" ).autocomplete({
source: 'projects/add_projects.php?client=1'
});
}