私のAjax呼び出し:
$.ajax({
url : path,
type: 'POST',
dataType : 'json',
data: data,
success: function(memberExtra) {
console.log (memberExtra);
}
});
私の反応:
HTTP/1.0 201 Created
Cache-Control: no-cache
Content-Type: application/json
Date: Tue, 10 Feb 2015 23:49:09 GMT
{"memberExtras":{"label":"seller","dropdown":"abc"}}
私のPHP:
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\JsonResponse;
/**
* Update the pulldown menus.
*
* @Route("/classification", name="classification")
* @Template()
*/
public function classificationAction(Request $request)
{
$memberType = $request->request->get('classification');
$label = $memberType["user"]["memberType"];
$dropdown = "abc";
$response = new Response(json_encode(array('memberExtras' => array(
'label' => $label,
'dropdown' => $dropdown,
))), Response::HTTP_CREATED);
$response->headers->set('Content-Type', 'application/json');
return new Response($response);
}
console.logには何も出力されません。("test")のような正規表現であっても。
dataType : 'json'宣言を削除し、$.parseJSON(memberExtra)を介して手動でデータを解析しようとすると、次のエラーが発生します。
SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
あまり驚かない。基本的に、パーサーは Symfony クラスによって返されたヘッダーでトリップするようです。このヘッダーを回避して JSON に到達するにはどうすればよいですか?
ありがとう!