我想向客户端发送响应,其中应在标头中包含一些常见的细节,比如userID
正文中的其他数据。如何将此类新参数添加到响应标头,
我试过,
public function postAPIAction()
{
$jsonData = $this->getRequest()->getContent();
$decodePostRequest = json_decode($jsonData, true);
// processing is involved........
$uniqueKey=$this->generateUniqueKey();
$response = new Response();
$response->headers->add(array('userId' => $uniqueKey));
return new Response(json_encode(array('errorcode' => '1'), true));
}
这是行不通的。