当前位置:   article > 正文

GET正常,POST获取不到数据

GET正常,POST获取不到数据

环境复现

        前台:

  1. wx.request({
  2. url: 'xxxxxx',
  3. method: 'POST',
  4. header: {
  5. "content-type": "application/json"
  6. },
  7. success(res) {
  8. console.log(res);
  9. },
  10. fail(err) {
  11. console.error('网络请求失败', err);
  12. }
  13. });

        后端使用springboot:

  1. @RequestMapping(value = "/errApiList")
  2. public String getProductionPlanList(HttpServletRequest req, HttpServletResponse res) {
  3. String materialCode = req.getParameter("MaterialCode");
  4. }

将请求方式换成GET,后端可以正常拿到数据,但是换成POST就拿不到。

解决方式:

更改请求头:"content-type": "application/x-www-form-urlencoded"

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/814292
推荐阅读
相关标签
  

闽ICP备14008679号