Suche…


Parameter

Parameter Einzelheiten
string Inhalt Der Antwortinhalt
integer Status Der HTTP-Statuscode.
array Header Array von Antwortheatern.

Einfache Benutzung

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

Statuscode einstellen

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

    return new Response($error, 500); 
}

Ein anderes Beispiel:

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

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

Überschrift festlegen

Siehe Liste der http-Header .

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

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

    return $response; 
}

JsonResponse

JSON-formatierte Antwort zurückgeben:

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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow