我正在使用ajax从数据库中检索一些数据,我在数据库上有3行,只检索了1行数据。我尝试其他查询,没关系。 'COD_DISTRITO'是外键。
model Codeigniter - >该表有3行,我只收到1行
function getConselhosDistrito($idDestrito) {
$this->db->select('*');
$this->db->from('CONCELHO');
$this->db->where('COD_DISTRITO', $idDestrito);
$query = $this->db->get();
return $query;
}
Controller Codeigniter
public function getConcelhosDistrito(){
$id = $this->input->post('iddestrito');
$data = $this->Consulta_model->getOcorrencias()->result_array();
echo json_encode($data);
}
////////////////////////
该查询工作正常
function getOcorrencias(){
$this->db->select('*');
$this -> db -> from('OCORRENCIA1');
$query = $this->db->get();
return $query;
}