誰かが私に何かを手伝ってくれるかどうか疑問に思いました。
モデルの関数を呼び出すajaxが少しあります。
しかし、「モデル」で出力を並べ替えることができないようです。
関数の下で問題が発生しています
function get_models_by_brand($tree = null)
{
$this->db->select('id, model');
if($tree != NULL){
$this->db->where('brand_id', $tree);
}
$query = $this->db->get('models');
$models = array();
if($query->result()){
foreach ($query->result() as $model) {
$models[$model->id] = $model->model;
}
return $models;
} else {
return FALSE;
}
}