springcloud服务调用 list集合解析错误处理方法
错误为如下:

解决方法如下:
把远程调用的接口改为
R queryShopInfoById(@RequestParam("memberId") Integer memberId);

controller层

这样就可以拿到你想要的数据了。
错误为如下:

解决方法如下:
把远程调用的接口改为
R queryShopInfoById(@RequestParam("memberId") Integer memberId);

controller层

这样就可以拿到你想要的数据了。