3
我想向客戶端發送響應,其中應包含常見的標頭中的一些細節,例如userID
和其他數據在主體中。如何增加這種新的參數標頭響應,在symfony2中添加額外的新參數作爲響應
我試過,
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));
}
這是行不通的。
這應該有效。請粘貼控制器中的更多代碼 –
您是否從操作中「返回」了創建的請求? –
我編輯代碼 – stefun