|
@@ -39,7 +39,10 @@ public class WexinController {
|
|
@GetMapping("/getConfig")
|
|
@GetMapping("/getConfig")
|
|
public RespDTO<Map> getConfig(HttpServletRequest request) {
|
|
public RespDTO<Map> getConfig(HttpServletRequest request) {
|
|
WeixinVO weixinVO = new WeixinVO();
|
|
WeixinVO weixinVO = new WeixinVO();
|
|
- weixinVO.setUrl(request.getRequestURL().toString());
|
|
|
|
|
|
+// System.out.println(request.getRequestURL().toString());
|
|
|
|
+// System.out.println(request.getQueryString());
|
|
|
|
+// System.out.println(request.getRequestURL().toString() + "?" + request.getQueryString());
|
|
|
|
+ weixinVO.setUrl(request.getRequestURL().toString() + "?" + request.getQueryString());
|
|
Map<String, String> map = weixinFacade.getConfig(weixinVO);
|
|
Map<String, String> map = weixinFacade.getConfig(weixinVO);
|
|
return RespDTO.onSuc(map);
|
|
return RespDTO.onSuc(map);
|
|
}
|
|
}
|