正常不加·@AdaptBy(type = JsonAdaptor.class)· 的,GET请求可以取得参数,POST 不可以,
加了·@AdaptBy(type = JsonAdaptor.class)· ,POST取得到了,GET不行
有什么方法可以同时两种都可以满足取得参数吗
@At
// @AdaptBy(type = JsonAdaptor.class)
public Object query( @Param("airportcode")String airportcode,@Param("..")Pager pager) {
ResponseCode res = responseCodeService.query(Msg.OK.getCode());
HashMap<String,Object> hs = new HashMap<String,Object>();
hs.put("data", aiisAirportService.query(airportcode, pager));
res.setAttr(hs);
return res;
}