我已经为关键字搜索编写了一个方法和模型。但不幸的是,我得到的输出与我的关键字匹配,并且与我键入的关键字没有任何匹配。
这是我的代码:
controller.php:
function suggestions()
{
$this->load->model('Booksmodel');
$term = $this->input->post('term',TRUE);
$rows = $this->Booksmodel->GetAutocomplete(array('keyword' => $term));
$json_array = array();
foreach ($rows as $row)
array_push($json_array, $row->book_title);
array_push($json_array, $row->auth_firstname);
array_push($json_array, $row->isbn);
echo json_encode($json_array);
}
请帮帮我。
答案 0 :(得分:1)
试试这个(添加另一个参数,none,'like'
功能):
function GetAutocomplete($options = array())
{
$this->load->database();
$this->db->limit('10');
$this->db->select('book_title,auth_firstname,isbn,auth_lastname,publisher_name');
$this->db->like('book_title', $options['keyword'], 'none');
$this->db->or_like('auth_firstname', $options['keyword'], 'none');
$this->db->or_like('isbn', $options['keyword'], 'none');
$this->db->or_like('auth_lastname', $options['keyword'], 'none');
$this->db->or_like('publisher_name', $options['keyword'], 'none');
$query = $this->db->get('bookdetails');
return $query->result();
}
'none'将阻止它在类似函数中使用通配符(%
)。