zoukankan      html  css  js  c++  java
  • springMVC学习之接受JSON参数

    今天在springmvc使用rest模式异步提交,后台接受json字符。发现好多问题,感觉和spring3.0使用习惯上多少有点区别。因此把4.0的异步提交和方式记录下来。

    前台页面代码如下:

    <script type="text/javascript">
    $(function() {
      $("#btn").click(function() {
        var param = {firstUserId:"shaomch",secondUserId:"ramy",signId:"005",signType:"0005"};
        $.ajax({
          type: "post",
          url: "../WSHManager/mobile/feifanGroupIntentSign/createSign",
          dataType: "json",
          data: param,
          success: function (data) {
          }
        });
      });
    });
    </script>

    这里注意,以前传递到后台可能是json类型的字符串。现在可以直接传递json对象了。

    后台代码controller代码如下:

    /**
    * 取得对象形式接受json
    * @param param
    * @return
    */
    @RequestMapping(value = "createSign", method = RequestMethod.POST)
    public @ResponseBody BaseResult createSign(FeifanGroupIntentSignParam param) {
      //feifanGroupIntentSignService.createSign(param);
      return baseResult;
    }

    /**
    * 取得对象中的某个属性
    * @param param
    * @return
    */
    @RequestMapping(value = "createSign", method = RequestMethod.POST)
      public @ResponseBody BaseResult createSign(String firstUserId) {
      //feifanGroupIntentSignService.createSign(param);
      return baseResult;
    }

  • 相关阅读:
    django-based blog- mezzanine
    echo "hello" | nc -4t -w1 localhost 8001
    boost静态链接的问题 -lgcc_s
    Vim 新用法
    解决docker中DNS查询的问题
    centos 升级GCC/G++
    enable c++11 in autoconf in fucking gnu auto tools
    Fucking "pkg-config not found"
    在CentOS 6.X 上面安装 Python 2.7.X
    redis sentinel 配置
  • 原文地址:https://www.cnblogs.com/michaelShao/p/5525989.html
Copyright © 2011-2022 走看看