像大多数页面一样,我的网站在一个页面中有多个横幅。
我们有一个内部横幅系统。为了调用横幅,网络请求就像
/bannersystem/?page=home&subpage=top&userid=1
/bannersystem/?page=home&subpage=bottom&userid=1
/bannersystem/?page=home&subpage=center&userid=1
/bannersystem/?page=home&subpage=left&userid=1
所有这些请求都发送到由我处理的不同(内部)服务器。
为了优化:我计划像这样调用请求
/bannersystem/?page=home&subpage=top,bottom,center,left&userid=1
并从调用它的页面开始,我将处理结果。因此,http 请求将下降。
问题:
- 还有其他方法会更好吗?
- 我是否应该创建一个接受请求的包装器,
/bannersystem/?page=home&subpage=top,bottom,center,left&userid=1
以及来自包装器内部调用旧 url 的请求以避免代码更改