0
在搜索查詢中包含相關資源的最佳做法是什麼?REST API過濾和相關資源最佳實踐
我的資源有:
/projects
/participants
/questions
/questionAnswers
查詢會是這樣的:讓誰是所有參與者:
- between the age of 20 and 40 and,
- male and,
- selected answer X of question y
它會是這樣的
/參與者搜索=性別? :男性,年齡> = 20,年齡< = 40,提問:x,回答:y
這種查詢有更好的還是標準的方法嗎?
就個人而言,我寧願使用應用程序/ x-WWW-形式urlencoded並將其作爲POST發送。這是個人觀點,我可能是錯的。也許這將幫助https://stackoverflow.com/questions/4024271/rest-api-best-practices-where-to-put-parameters –
也許[GraphQL](https://github.com/facebook/graphql)會對你的情況更可行嗎? – Kim