我想在控制器中以json格式显示响应,并且不希望在视图中移动.那么,请让我以任何方式让我能够展示json的回应.
$result = $this->mod_doc->get_list(); echo json_encode($result);
试试这些.
public function signin() { $arr = array('a' => 1,'b' => 2,'c' => 3,'d' => 4,'e' => 5); //add the header here header('Content-Type: application/json'); echo json_encode( $arr ); }
或尝试这种方式
return $this->output ->set_content_type('application/json') ->set_status_header(200) // Return status ->set_output(json_encode(array(your array)));