Поиск…
параметры
параметр | подробности |
---|---|
string контент | Содержание ответа. |
integer статус | Код состояния HTTP. |
заголовки array | Массив ответных заголовков. |
Простое использование
public function someAction(){
// Action's code
return new Response('<span>Hello world</span>');
}
Установить код состояния
public function someAction(){
// Action's code
return new Response($error, 500);
}
Другой пример:
public function someAction(){
// Action's code
$response = new Response();
$response->setStatusCode(500)
$response->setContent($content);
return $response;
}
Установить заголовок
См. Список заголовков http .
public function someAction(){
// Action's code
$response = new Response();
$response->headers->set('Content-Type', 'text/html');
return $response;
}
JsonResponse
Возвращаемый ответ 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
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow