$this->format='json';
$model_list = Model_Foo::query()->select('id','name')->where('name','LIKE',$query)->get();
$data = array();
foreach($model_list as $i => $model)
{
$data[] = $model->to_array();
}
$this->response( $data );
It looks like you're new here. If you want to get involved, click one of these buttons!