Welcome Guest, Not a member yet? Register   Sign In
error when call JSON response
#1

Hello, I don't know this is bug or not. But ...

I have Controller A with method like :

Code:
public function myjson() {
     ....
     ....

     return $this->respond($json); // output JSON    
}

when call : http://localhost:8080/a/myjson
showing the output, JSON

but the problem is, when call by other controller show Error like
"Call to a member function setContentType() on null" ...
   
____
when code changed to

Code:
public function myjson() {
     ....
     ....

     return json_encode($json); // output JSON    
}

no error
Reply


Messages In This Thread
error when call JSON response - by mylastof - 09-10-2020, 10:14 AM
RE: error when call JSON response - by T.O.M. - 09-10-2020, 11:15 PM
RE: error when call JSON response - by davodm - 01-31-2021, 01:35 AM



Theme © iAndrew 2016 - Forum software by © MyBB