0
REST似乎最關注資源集合 - 事物列表。應該如何模擬一個在系統中存在一次的東西?更具體的東西很簡單。假設建模系統是一個教室,它有學生,一位教師和一個開放或關閉的門。一個人如何塑造門?我在想它會是這樣的:如何在REST API中爲全局資源建模?
GET and POST operations are supported.
GET https://<ipaddress>/classroom/door_status
Returns 200 if successful, with a response containing:
DoorStatus - String - Value of door status, either "Open" or "Closed"
POST https://<ipaddress>/classroom/door_status
Specify the attribute of:
DoorStatus - String - Value of desired door status, "Open" or "Closed"
Returns 201 if the status was successfully modified.
DELETE總是會失敗。
一間教室當然可以有多個門,但暫時忍受着我。當然,有教室的建築往往有多個教室。再次忍耐着我。
接下來,我們可能會爲教室添加一個light_status資源。鑑於這很可能,我們應該從一個「global_properties」資源開始,該資源將具有DoorStatus和LightStatus屬性。
感謝您的建議,幫助或(尤其是)示例。 ... Alan