В методе контроллера __construct()
загрузите вспомогательный файл:
public function __construct()
{
parent::__construct();
$this->load->helper('file');
}
и затем отобразите его со вторым параметром в TRUE:
public function loaddata(){
$sql = $this->db->query('select * from e_alat_angkutan')->result();
echo json_encode($sql,TRUE);
}
Как указывает этот ответ Записать в файл JSON с помощью CodeIgniter :
//If the json is correct, you can then write the file and load the view
// $fp = fopen('./data.json', 'w');
// fwrite($fp, json_encode($sql));
// if ( ! write_file('./data.json', $arr))
// {
// echo 'Unable to write the file';
// }
// else
// {
// echo 'file written';
// }
Надеюсь, это поможет!