$content = $request->getContent();
return \Response::json([
'success' => $content
]);
我不知道如何格式化它在laravel 5.1 JSON。我想使用這些數據,但如果我使用$ request-> input('name')它爲空,它實際上是在控制器中。如果您有另一種獲取數據的方式,將非常感激。
$content = $request->getContent();
return \Response::json([
'success' => $content
]);
我不知道如何格式化它在laravel 5.1 JSON。我想使用這些數據,但如果我使用$ request-> input('name')它爲空,它實際上是在控制器中。如果您有另一種獲取數據的方式,將非常感激。
,你將不得不解析在客戶端的響應:
JSON.parse(ajaxResponse)
,現在你只能從服務器
得到一個字符串返回什麼是把內容給點成功的關鍵?你能解釋一下你想要的嗎? –
重點是查看請求是否獲取數據。如何在php或laravel中格式化它? – Rbex
你可以嘗試'$ request-> all()'看看裏面是什麼,而不是'getContent' –