我是Laravel的新手,在抓住我正在撰写的REST api中发布的JSON时遇到了一些麻烦。
更新 为清楚起见,这个:
$content = json_decode($request->content);
var_dump($content);
exit;
还会返回null
原始
这是我的store
方法:
public function store(Request $request)
{
// Creates a new user based on the passed JSON
// I appreciate this wont work as it's json encoded, but this was my
// last test.
// Previously I'd tried: $content = json_decode($request->content);
// but that was also null :(
$user = new User();
$user->name = $request->content["name"];
$user->email = $request->content['email'];
$user->password = $request->content['password'];
var_dump($request); exit;
// Commit to the database
$user->save();
}
这是我试图发送的内容(通过:我只是在休息客户端):
{
"name":"Steve Jobs 2",
"email":"s@trp2.com",
"password":"something123",
}
这是将var_dump呈现为响应时的结果:
protected 'cacheControl' =>
array (size=0)
empty
protected 'content' => string '{
"name":"Steve Jobs 2",
"email":"s@trp2.com",
"password":"something123",
}' (length=85)
protected 'languages' => null
protected 'charsets' => null
protected 'encodings' => null
所以我可以在content
对象中看到Request
,但无论我尝试什么,它总是为空。所以我的问题是,我到底如何访问它?!
谢谢!
答案 0 :(得分:5)
您可能想要使用$request->getContent()
。
答案 1 :(得分:5)
{
"name":"Steve Jobs 2",
"email":"s@trp2.com",
"password":"something123",
}
无效JSON,因此Laravel无法对其进行解码。
从此处[...]ng123",
然后,您将能够使用上述答案中提到的任何方法,例如(假设您将请求作为application / json发送)
$request->all();
$request->only();
$request->get();
如果您未将请求作为application / json发送,请使用$ request-> json()
答案 2 :(得分:2)
Laravel通常会自动解码您的JSON。您可以使用input()
来检索值:
$user = new User();
$user->name = $request->input('name');
$user->email = $request->input('email');
$user->password = $request->input('password');
甚至有更短的方法,您可以在请求方法上动态访问您的属性:(这可能不适用于某些名称)
$user = new User();
$user->name = $request->name;
$user->email = $request->email;
$user->password = $request->password;
此外还有其他不错的功能。例如all()
或only()
,它将返回所有输入值的关联数组:
$inputs = $request->all();
// or
$inputs = $request->only('name', 'email', 'password');
答案 3 :(得分:0)
作为受保护的变量/对象,您需要使用类上的预定义方法访问它。
您可以使用以下内容。
$request->only('name', 'email', 'password')