Zoeken…


parameters

Parameter Details
string inhoud De reactie inhoud.
integer status De HTTP-statuscode.
array headers Serie van antwoordkoppen.

Eenvoudig gebruik

public function someAction(){
        
    // Action's code 
        
    return new Response('<span>Hello world</span>'); 
}

Stel statuscode in

public function someAction(){
    
    // Action's code 

    return new Response($error, 500); 
}

Een ander voorbeeld:

public function someAction(){
    
    // Action's code 

    $response = new Response(); 
    $response->setStatusCode(500)
    $response->setContent($content); 
    return $response;
}

Kop instellen

Zie lijst met http-headers .

 public function someAction(){
    
    // Action's code
    $response = new Response(); 

    $response->headers->set('Content-Type', 'text/html');

    return $response; 
}

JsonResponse

Terug JSON geformatteerde reactie:

use Symfony\Component\HttpFoundation\JsonResponse;

public function someAction(){
    
    // Action's code

    $data = array(
        // Array data
    );

    return new JsonResponse($data); 
}


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow