Ricerca…


Parametri

Parametro Dettagli
contenuto di string Il contenuto della risposta
stato integer Il codice di stato HTTP.
intestazioni di array Matrice di intestazioni di risposta.

Uso semplice

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

Imposta il codice di stato

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

    return new Response($error, 500); 
}

Un altro esempio:

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

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

Imposta intestazione

Vedi l'elenco delle intestazioni http .

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

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

    return $response; 
}

JsonResponse

Restituisci la risposta formata JSON:

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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow