AJAX发送数组作为Laravel的响应

时间:2016-05-05 10:58:41

标签: php arrays ajax laravel post

我正试图从Laravel发送对AJAX帖子请求的回复。

inv

当我收到信息并使用jQuery处理它时,除路由外,所有内容都显示为空。

谢谢,

1 个答案:

答案 0 :(得分:2)

response()->json()方法使用场景后面的json_encode() PHP函数将给定数组转换为JSON。 因此,您应该从json_encode()来电中删除response()->json()

基本上它看起来应该是这样的

return response()->json($info);