オブジェクトのコレクションに基づいてコレクションを取得できる必要があります。このため、私はいくつかのアプローチを検討していますが、どちらが最も理にかなっているのかわからないので、両方を投稿します。私が考えていなかったかもしれないより良い方法があるなら、あなたの提案を投稿してください:)
たとえば、リソースとして製品とレビュー(製品のレビュー)を使用します。
目的:すべての製品のレビューを取得したい
アプローチA:
POST api/Products { json: filters, limits, etc } // returns api/Products/<id>
GET api/Products/<id>/Reviews { json: filters, limits, etc } // returns json array
// ... of reviews present in products
// id in this case would refer to the collection, which would be cached
アプローチB:
GET api/Reviews { json: filters } // returns json array of reviews, but needs to
// ... have either all of the product ids passed as an array (not practical with
// ... huge collections), or needs to have all of the api/Products filters passed,
// ... in which case making the code unDRY
アプローチC:
GET api/Reviews { json: filters: { products: 'api/Products?filters' }...
// is this reasonable?
助けてくれてありがとう、そしてこの質問が初心者ならお詫びします、私はまだRESTに不慣れです
アプローチD:
access individual products
GET api/Product/<id>
access collection of products:
POST api/Products?filters=stuff..
GET api/Products/<id>
access collection of products' reviews
POST api/Products/<id>/Reviews?filters=stuff
GET api/Products/<id>/Reviews/<id>
... this would thus allow us to cache the result easily, does this seem reasonable to you?