我们正在开发用于电子商务网站的Rest API,它将由移动应用程序使用。
在应用程序的首页中,我们需要调用多个资源,例如滑块,顶级品牌,畅销产品,热门产品等。
进行API调用的两个选项:
单次通话:
www.example.com/api/GetAllInHome
多个通话:
www.example.com/api/GetSliders
www.example.com/api/GetTopBrands
www.example.com/api/GetBestSellingProducts
www.example.com/api/GetTrendingProducts
其余api设计的最佳方法是哪种-一次或多次调用,说明优缺点?
哪个会花更多时间来响应请求?