如何使用 Laravel 5.5 或 Laravel 5.4 创建 REST JSON API
How to create a REST JSON API using Laravel 5.5 or Laravel 5.4
我刚开始使用 laravel,我想创建一个简单的休息 api 接受 json 数据和 returns 一个 json 数据但是似乎不知道该怎么做。我想知道是否有人可以提供帮助。
下面是我希望我的控制器看起来像或做的:
class MembersController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//return all members as json
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//leave this as empty
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
// get user values as json
// save value to database
// return user data as json.
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//return single user dat as json
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
//leave as empty
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//update value and return as json
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//delete value and also return deleted value as json
}
}
如何使用 laravel 实现上述目标。大多是5.5或5.4。
我似乎在任何地方都找不到任何有用的东西。
这道题不难;您可以通过互联网轻松获得此类问题的解决方案。
无论如何,您可以通过使用数组和 json_decode 来完成此操作,如下所示
$data = ['staus' => 'ok',
'id' => 10,
'name'=>'something',
'address'=>'something'
];
// encode this array to json strig you can use return or echo, print to generate the result
return json_encode($data);
如果你想将模型对象转换为 json 那么你可以简单地使用下面的 toJson 函数,它带有 laravel 框架
return ModelName::all()->toJson();
// for a single record retrieval
return ModelName::find(1)->toJson();
我刚开始使用 laravel,我想创建一个简单的休息 api 接受 json 数据和 returns 一个 json 数据但是似乎不知道该怎么做。我想知道是否有人可以提供帮助。 下面是我希望我的控制器看起来像或做的:
class MembersController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//return all members as json
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//leave this as empty
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
// get user values as json
// save value to database
// return user data as json.
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//return single user dat as json
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
//leave as empty
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//update value and return as json
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//delete value and also return deleted value as json
}
}
如何使用 laravel 实现上述目标。大多是5.5或5.4。 我似乎在任何地方都找不到任何有用的东西。
这道题不难;您可以通过互联网轻松获得此类问题的解决方案。
无论如何,您可以通过使用数组和 json_decode 来完成此操作,如下所示
$data = ['staus' => 'ok',
'id' => 10,
'name'=>'something',
'address'=>'something'
];
// encode this array to json strig you can use return or echo, print to generate the result
return json_encode($data);
如果你想将模型对象转换为 json 那么你可以简单地使用下面的 toJson 函数,它带有 laravel 框架
return ModelName::all()->toJson();
// for a single record retrieval
return ModelName::find(1)->toJson();