<small id='oYt1s'></small><noframes id='oYt1s'>

  • <tfoot id='oYt1s'></tfoot>
    <legend id='oYt1s'><style id='oYt1s'><dir id='oYt1s'><q id='oYt1s'></q></dir></style></legend>
      <bdo id='oYt1s'></bdo><ul id='oYt1s'></ul>

    1. <i id='oYt1s'><tr id='oYt1s'><dt id='oYt1s'><q id='oYt1s'><span id='oYt1s'><b id='oYt1s'><form id='oYt1s'><ins id='oYt1s'></ins><ul id='oYt1s'></ul><sub id='oYt1s'></sub></form><legend id='oYt1s'></legend><bdo id='oYt1s'><pre id='oYt1s'><center id='oYt1s'></center></pre></bdo></b><th id='oYt1s'></th></span></q></dt></tr></i><div id='oYt1s'><tfoot id='oYt1s'></tfoot><dl id='oYt1s'><fieldset id='oYt1s'></fieldset></dl></div>

        通过 Ajax 调用使用 Struts 2 的 HTTP 数组参数

        HTTP Array Parameters with Struts 2 via an Ajax Call(通过 Ajax 调用使用 Struts 2 的 HTTP 数组参数)
            <tbody id='OONHh'></tbody>

          <small id='OONHh'></small><noframes id='OONHh'>

          <i id='OONHh'><tr id='OONHh'><dt id='OONHh'><q id='OONHh'><span id='OONHh'><b id='OONHh'><form id='OONHh'><ins id='OONHh'></ins><ul id='OONHh'></ul><sub id='OONHh'></sub></form><legend id='OONHh'></legend><bdo id='OONHh'><pre id='OONHh'><center id='OONHh'></center></pre></bdo></b><th id='OONHh'></th></span></q></dt></tr></i><div id='OONHh'><tfoot id='OONHh'></tfoot><dl id='OONHh'><fieldset id='OONHh'></fieldset></dl></div>

                <tfoot id='OONHh'></tfoot>
                  <bdo id='OONHh'></bdo><ul id='OONHh'></ul>
                • <legend id='OONHh'><style id='OONHh'><dir id='OONHh'><q id='OONHh'></q></dir></style></legend>
                • 本文介绍了通过 Ajax 调用使用 Struts 2 的 HTTP 数组参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我在将数组参数发送到 Struts 2 操作类时遇到问题.我正在使用 struts 2.1.8.1.

                  I'm having an issue sending array parameters to a Struts 2 action class. I am using struts 2.1.8.1.

                  下面是一些示例代码:

                  public class MyAction extends ActionSupport {
                  
                      private String[] types;
                  
                      public String execute() {
                          return SUCCESS;
                      }
                  
                      public String[] getTypes() {
                          return types;
                      }
                  
                      public void setTypes(String[] types) {
                          this.types = types;
                      }
                  }
                  

                  问题是通过jquery ajax方法发送数组时:

                  The problem is when sending an array via the jquery ajax method:

                  $.ajax({
                      type: 'POST',
                      url: 'Myaction.action',
                      data: {
                          types: ["this", "is", "a", "test"]
                      }
                  });
                  

                  导致异常发生:

                  ognl.ParseException: 在第 1 行第 7 列遇到"]" "] "".

                  如何使用 jQuery 将数组发送到我的 Struts2 动作类?我需要包含类似于拦截器的东西吗?或者 jQuery 中有一个选项可以删除它吗?

                  How can I use jQuery to send the array to my Struts2 action class? Is there something along the lines of an interceptor that I need to include? Or is there an option in jQuery to remove this?

                  我在使用 jQuery UI 可排序控件时也遇到了这个问题,但我使用正则表达式删除了[]"字符解决了这个问题.我想避免这种情况,因为那个解决方案让我很困扰.我想我可以自己构建字符串,而不是使用对象表示法,但除非你能说服我,否则我想使用对象表示法.

                  I also encountered this problem with the jQuery UI Sortable control, but I solved that using a regex to remove the "[]" characters. I would like to avoid that, because that solution bothers me. I suppose I could just build the string myself, instead of using the object notation, but unless you can convince me otherwise, I would like to use the object notation instead.

                  推荐答案

                  IIRC Struts 不喜欢 jQuery 1.4+ 格式,不过你可以使用传统格式,只要把它放在你的 $.ajax() 调用:

                  IIRC Struts doesn't like the jQuery 1.4+ format, you can use the traditional format though, just put this any time before your $.ajax() call:

                  $.ajaxSettings.traditional = true; 
                  

                  您可以在 $.param() 文档,最好的说明是他们的简短示例:

                  You can read more about the 1.4+ default vs traditional serialization in the $.param() documentation, the best illustration is their short example:

                  // <=1.3.2: (traditional in 1.4+)
                  $.param({ a: [2,3,4] }) // "a=2&a=3&a=4"
                  // >=1.4: (default in 1.4+)
                  $.param({ a: [2,3,4] }) // "a[]=2&a[]=3&a[]=4"
                  

                  这篇关于通过 Ajax 调用使用 Struts 2 的 HTTP 数组参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  JavaScript/jQuery: How to make sure cross-domain click tracking event succeeds before the user leaves the page?(JavaScript/jQuery:如何在用户离开页面之前确保跨域点击跟踪事件成功?)
                  how to redirect to struts action from java script in struts 2?(如何从struts 2 中的java 脚本重定向到struts 动作?)
                  HOWTO do CSRF protection in Struts2 application for AJAX requests(如何在 Struts2 应用程序中为 AJAX 请求做 CSRF 保护)
                  Send JSON object to Struts 2 action by using strut2 jquery plugin tags(使用 strut2 jquery 插件标签将 JSON 对象发送到 Struts 2 操作)
                  upload file in struts2 using ajax(使用ajax在struts2中上传文件)
                  How to call a method in Struts2 Action Class method with javascript(如何使用javascript调用Struts2 Action Class方法中的方法)
                    <legend id='rFkwU'><style id='rFkwU'><dir id='rFkwU'><q id='rFkwU'></q></dir></style></legend>
                      <bdo id='rFkwU'></bdo><ul id='rFkwU'></ul>

                      • <small id='rFkwU'></small><noframes id='rFkwU'>

                            <tbody id='rFkwU'></tbody>
                          <i id='rFkwU'><tr id='rFkwU'><dt id='rFkwU'><q id='rFkwU'><span id='rFkwU'><b id='rFkwU'><form id='rFkwU'><ins id='rFkwU'></ins><ul id='rFkwU'></ul><sub id='rFkwU'></sub></form><legend id='rFkwU'></legend><bdo id='rFkwU'><pre id='rFkwU'><center id='rFkwU'></center></pre></bdo></b><th id='rFkwU'></th></span></q></dt></tr></i><div id='rFkwU'><tfoot id='rFkwU'></tfoot><dl id='rFkwU'><fieldset id='rFkwU'></fieldset></dl></div>
                          <tfoot id='rFkwU'></tfoot>