codeigniter オートコンプリートが正しく機能しています。JavaScript の構文は次のとおりです。
コントローラ
function autocomplete(){
$this->load->view('sales/new_order_details');
}
モデル
function get_customer($q){
$this->db->select('CustomerName');
$this->db->like('CustomerName', $q);
$query = $this->db->get('Customers');
if($query->num_rows > 0){
foreach ($query->result_array() as $row){
$row_set[] = htmlentities(stripslashes($row['CustomerName'])); //build an array
}
$this->output->set_content_type('application/json')->set_output(json_encode($row_set));
}
}
JavaScript
$(function(){
$("#customer").autocomplete({
source: "get_customers"
});
});
MVC フレームワークのコンセプトは再利用性です。要求しているコントローラーの名前を JavaScript に渡して、複数のコントローラー メソッドで動的に使用できるようにするにはどうすればよいですか?
次のようなものです:
var method=controllername.requestingmethod;
$(function(){
$("#customer").autocomplete({
source: "method"
});
});
何か案は?