您可能需要设置HTTP内容类型才能
application/json使其正常工作:
<?phpclass main extends Controller { function test() { $item = trim($this->input->post('item')); $array = array('result' => $item); header('Content-Type: application/json',true); echo json_enpre($array); }}?>)


