只是想知道我是否能够使用API平台(https://api-platform.com/)处理以下表结构。
- id - auto increment - primary key
- uuid - string
- name
- department_id
- id - auto increment - primary key
- uuid - string
- name
我想使用api平台通过ApiSubresource实现以下目标:
获取/ api / student / {uuid}
响应
{
"uuid": "a1590004-f74b-4a10-93f0-27f17c370058",
"name": "student1",
"department": "/api/department/a2122004-f74b-4a10-93f0-27f17c370058"
}
谢谢。