0
原諒我的術語,我是一個新手在web開發中。如何命名一個RESTLER json結果
要想象我的問題,請參閱下文。
這是怎麼RESTLER顯示JSON:
[ { "id": 1, "name": "Daniel Craig", "email": "[email protected]" }, { "id": 2, "name": "Tom Cruise", "email": "[email protected]" } ]
這是我怎麼想RESTLER顯示JSON結果:
{"actors":[ { "id": 1, "name": "Daniel Craig", "email": "[email protected]" }, { "id": 2, "name": "Tom Cruise", "email": "[email protected]" } ]}