ThinkPHP可以通過路由、控制器和模型來實現RESTful API。
// 定義資源路由
Route::resource('api/user', 'User');
namespace app\api\controller;
use think\Controller;
class User extends Controller
{
public function index()
{
// 處理GET請求,獲取用戶列表
}
public function save()
{
// 處理POST請求,創建新用戶
}
public function update($id)
{
// 處理PUT請求,更新指定用戶
}
public function delete($id)
{
// 處理DELETE請求,刪除指定用戶
}
}
namespace app\api\model;
use think\Model;
class UserModel extends Model
{
// 定義數據表名
protected $table = 'user';
// 查詢用戶列表
public function getUserList()
{
return $this->select();
}
// 創建新用戶
public function create($data)
{
return $this->insert($data);
}
// 更新用戶信息
public function update($id, $data)
{
return $this->where('id', $id)->update($data);
}
// 刪除用戶
public function delete($id)
{
return $this->where('id', $id)->delete();
}
}
通過以上步驟,就可以在ThinkPHP中實現RESTful API。在前端發送請求時,可以根據請求方法和路由來訪問對應的控制器方法,從而實現對數據的增刪改查操作。