使用api平台处理id和uuid

时间:2018-11-19 03:31:04

标签: php api symfony api-platform.com

只是想知道我是否能够使用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"
}

谢谢。

0 个答案:

没有答案