zoukankan      html  css  js  c++  java
  • SpringMVC的Ajax提交

    这种类型的提交, 必须配合 multipartResolver,

    $("button:submit").click(function(){
          $.ajax({
            type : 'POST',
            url : '${sys_config.root_path}/login.html',
            cache:false,
            processData:false,
            contentType:false,
            data : new FormData($('#login_form')[0]),
            dataType : "json"
          }).done(function(data) {
            if (data.success) {
              //...
            }
          });
          return false;
        });

    需要在Spring配置文件中使用, 没有这个的话, request中的parametersMap是空的

        <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
            <!-- one of the properties available; the maximum file size in bytes -->
            <property name="maxUploadSize" value="10240000"/>
        </bean>

    在dependency中要添加commons-fileupload.

    在Controller中, 使用正常的方式即可

    @RequestMapping(value = {"/login"}, method = RequestMethod.POST, produces="application/json;charset=UTF-8")
        @ResponseBody
        public String doLoginPost()
        {
            Map<String, String[]> params = getRequest().getParameterMap();
            ..
        }

    另外在Spring的配置中还需要注意添加 content-negotiation-manager, 没有这个的话, 使用produces="application/json"会出406错误. 其中关键的一个参数是favorPathExtension, 这个必须为false, 另外ignoreAcceptHeader这个参数不能加, 加上也会导致406.

    <mvc:annotation-driven content-negotiation-manager="contentNegotiationManager" />
    
        <bean id="contentNegotiationManager" class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">
            <!-- Turn off working out content type based on URL file extension, should fall back to looking at the Accept headers -->
            <!-- Disabled path extension. Note that favor does not mean use one approach in preference to another, it just enables
            or disables it. The order of checking is always path extension, parameter, Accept header -->
            <property name="favorPathExtension" value="false" />
            <!-- Enable the use of the URL parameter -->
            <property name="favorParameter" value="true" />
            <!-- Don't use the JAF, instead specify the media type mappings manually - we only wish to support JSON and XML -->
            <property name="useJaf" value="false"/>
            <property name="defaultContentType" value="text/html" />
            <property name="mediaTypes" >
                <value>
                    json=application/json
                    xml=application/xml
                </value>
            </property>
        </bean>

    对于普通的提交, 使用这种方式即可, 不需要multipartResolver

        $("button:submit").click(function(){
          $.ajax({
            type : 'POST',
            url : '${sys_config.root_path}/login.html',
            cache:false,
            data : $('#login_form').serialize(),//new FormData($('#login_form')[0]),
            dataType : "json"
          }).done(function(data) {
            //...
          });
          return false;
        });
    favorPathExtension
  • 相关阅读:
    C++ generic tools -- from C++ Standard Library
    18 12 18 给服务器添加logging 日志功能
    18 12 14 python提高 装饰器
    18 12 `12 WSGI 协议
    18 12 07 MySQL 与python 的交互
    转 SQL 的数据库 架构规范 之 58到家数据库30条军规解读
    18 12 06 sql 的 基本语句 查询 条件查询 逻辑运算符 模糊查询 范围查询 排序 聚合函数 分组 分页 连接查询 自关联 子查询
    18 12 4 SQL 的基本 语法
    clion 的 安装 变量配置的 搬运工(有点基础应该能看 大家看不懂 就是我自己看 哈哈哈哈哈哈)
    18 11 27 高级的服务器连接 epoll
  • 原文地址:https://www.cnblogs.com/milton/p/4759175.html
Copyright © 2011-2022 走看看