嗨,我使用 FOSRestBundle 创建我的 API。我必须像 ARRAY 一样发送数据:
"sender"=>array("name"=>"adm","city"=>"Rz")
和更多。
我阅读了文档,但我不知道如何接收数据数组!
我的功能:
/**
* @QueryParam(name="recipient", description="Page of the overview.")
* @QueryParam(name="sender", description="Page of the overview.")
*
*/
public function putDispatchAction(ParamFetcher $params)
{
// $params = $request;
$rec = $params->get('recipient');
$sender = $params->get('sender');
我尝试接收参数 sender,它是 array() 但是如何?
我使用 symfony 2.8