我正在使用Laravel 5.2创建一个API,我有一个名为Post
的模型类
当我在PostController
中收到客户的请求时,我有JsonObject
这样的话:
{
"description": "My description is here!",
"items": [
{
"text": "This is the item and the the sort is 0",
"type": 1,
"sort": 2
},
{
"type": 2,
"path": "exmple.com",
"sort": 3
}
],
"title": "My title",
"tags": [
{
"name": "Tag number #1"
},
{
"name": "Tag number #2"
},
{
"name": "Tag number #3"
}
],
"user_id": 1
}
在PostController
public function store(Request $request) {
$jsonObject = json_decode($request->getContent()); // i get jsonObject here
$post= new Post();
// what to do here?
}
关系
我想做什么:
使用收到的JsonObject
及相关数据
注意:其他模型类(如Tag和Item)可以使用。