CodeIgniter Forums
problem with restful format json - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: problem with restful format json (/showthread.php?tid=75002)



problem with restful format json - acy29 - 12-05-2019

Hello, i tray to create a restFull:

[/url][url=https://codeigniter4.github.io/userguide/incoming/restful.html#id8]https://codeigniter4.github.io/userguide/incoming/restful.html#id8


Code:
class RestMovie extends ResourceController {

    protected $modelName = 'App\Models\MovieModel';
    protected $format    = 'json';

    public function index(){

        return $this->respond($this->model->findAll());


But alwais the respond is in XML and not Json: