lumen Rest API 起步
2020-12-26 21:27
标签:type tab schema null url 定义数据 date dir hat .env bootstrap/app.php 创建数据表 定义数据表 运行迁移 接下来我们在app目录下创建模型文件User.php 然后创建控制器文件app/Http/Controllers/UserController.php 修改文件bootstrap/app.php 打开app/Http/routes.php并添加路由 lumen Rest API 起步 标签:type tab schema null url 定义数据 date dir hat 原文地址:https://www.cnblogs.com/jjxhp/p/13363948.htmllumen Rest API 起步
修改项目文件
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
$app->withFacades();
$app->withEloquent();
数据库迁移
php artisan make:migration create_table_users --create=users
database/migrations/迁移文件Schema::create(‘users‘, function (Blueprint $table) {
$table->id();
$table->string(‘name‘);
});
php artisan migrate
创建模型
namespace App;
use Illuminate\Auth\Authenticatable;
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Database\Eloquent\Model;
use Laravel\Lumen\Auth\Authorizable;
class User extends Model implements AuthenticatableContract, AuthorizableContract
{
use Authenticatable, Authorizable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $table = ‘users‘;
protected $fillable = [
‘id‘, ‘name‘,
];
/**
* The attributes excluded from the model‘s JSON form.
*
* @var array
*/
protected $hidden = [];
public $timestamps = false;
}
创建控制器
namespace App\Http\Controllers;
use App\User;
use DB;
use Illuminate\Http\Request;
class UserController extends Controller
{
public function createUser(Request $request)
{
$user = User::create($request->all());
return response()->json($user);
}
public function updateUser(Request $request,$id)
{
$user = User::find($id);
$user->name = $request->input(‘name‘);
$user->save();
return response()->json($user);
}
public function deleteUser($id)
{
$user = User::find($id);
$user->delete();
return response()->json(‘删除成功‘);
}
public function index($id = null)
{
if (!empty($id)) {
$users = User::find($id);
}else{
$users = User::all();
}
return response()->json($users);
}
public function hello()
{
return ‘hello‘;
}
}
定义路由
$app->router->group([
‘namespace‘ => ‘App\Http\Controllers‘,
], function ($router) {
require __DIR__.‘/../routes/web.php‘;
require __DIR__.‘/../app/Http/routes.php‘;
});
return $app;
$router->get(‘/hello‘, array(
‘uses‘ => ‘UserController@hello‘
));
$router->group([‘prefix‘ => ‘api‘], function() use ($router){
$router->post(‘person‘, ‘UserController@createUser‘);
$router->put(‘person/{id}‘,‘UserController@updateUser‘);
$router->delete(‘person/{id}‘,‘UserController@deleteUser‘);
$router->get(‘person[/{id}]‘,‘UserController@index‘);
});
测试API
curl -i -X POST -H "Content-Type:application/json" http://www.lelumen.test/api/person -d ‘{"id":2,"name":"test1"}‘
curl -i -X POST -H "Content-Type:application/json" http://www.lelumen.test/api/person -d ‘{"name":"test22"}‘
curl -H "Content-Type:application/json" http://www.lelumen.test/api/person/1 -X PUT -d ‘{"name":"ttt"}‘
curl -H "Content-Type:application/json" http://www.lelumen.test/api/person -X GET
curl -H "Content-Type:application/json" http://www.lelumen.test/api/person/1 -X GET
curl -X DELETE http://www.lelumen.test/api/person/1
空格引起的奇葩,阿哈哈
参考文件
上一篇:C#标准事件流