如何在symfony2中将JSON数据传递给rest API

时间:2015-01-28 09:12:41

标签: php json rest symfony curl

我正在为symfony 2创建rest api,但是无法将JSON数据传递给post方法。 $userform->isValid()总是失败。

curl -v -H "Accept: application/json" -X POST -d '{"username":"hitesh","userpassword":"hitesh123"}' http://localhost/us/serenify/web/app_dev.php/user/login

这是我为测试目的传递的数据。

  public function loginAction(Request $request)
    {
         return $this->processForm(new User(),$request);
    }



 private function processForm(User $user,$request)
    {   
        $userform = $this->createForm(new UserType(), $user);       
        $content = $this->getRequest();              
        $userform->submit($content);
       $key = md5(microtime().rand());
            if ($userform->isValid()) 
            {

                if(trim($data['username'])=="" || trim($data['userpassword']==""))
                { 
                       $data=array(
                                "success"=>'false',
                                "msg"=>'username or password is blank'    
                            );
                        $response = new Response(json_encode($data));
                        $response->setStatusCode(203);
                        $response->headers->set('Content-Type', 'application/json'); 
                }
                else
                {   
                    $username=trim($data['username']);
                    $userpassword=trim(md5($data['userpassword']));

                    $user = $this->getDoctrine()
                                       ->getRepository('SerenifyUserBundle:User')
                                       ->findOneBy(array('username' => $username, 'userpassword' => $userpassword));
                    if (!$user)
                    {
                        $data=array(
                                "success"=>'false',
                                "msg"=>'username or password is wrong'    
                            );
                        $response = new Response(json_encode($data));
                        $response->setStatusCode(404);
                        $response->headers->set('Content-Type', 'application/json');     
                    }
                    else
                    {
                         $data=array(
                                "success"=>'true',
                                "msg"=>'user has sucessfully logged in',
                                "username" => $username,
                                "sessionis" => $key,

                            );
                        $response = new Response(json_encode($data));
                        $response->setStatusCode(404);
                        $response->headers->set('Content-Type', 'application/json');  
                    }
                     $response = new Response(json_encode($data));    
                }
            }
            else
            {
                $data=array(
                                "success"=>'false',
                                "msg"=>'invalid form content'    
                            );
                        $response = new Response(json_encode($data));
                        $response->setStatusCode(404);
                        $response->headers->set('Content-Type', 'application/json');  

             }
        return $response;
    }

以上是我的控制器代码。

当我打印请求值时,不以JSON格式显示。

无论如何要测试或传递JSON数据?我正在创建登录功能。

2 个答案:

答案 0 :(得分:1)

我最近需要这样的内容,因为我正在广泛使用AngularJS $http服务将数据JSON发送给我的控制器的Request

我通过实现侦听传入请求的服务找到了解决方案,解压缩JSON并将其公开给{{1}}对象。

检查" 正确的方式" this link的一部分。

答案 1 :(得分:1)

为此目的创建了FOSRestBundle。我认为你应该开始在你的项目中使用它。它没有开销,易于使用。

https://github.com/FriendsOfSymfony/FOSRestBundle

问候。