DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JS傳遞對象數組為參數給後端,後端獲取的實例代碼
JS傳遞對象數組為參數給後端,後端獲取的實例代碼
編輯:關於JavaScript     

前端JS代碼:

  var conditons = [];
  var test1 = new Object();
  test1.name="1";
  test1.id="2";
  var test2 = new Object();
  test2.name="1";
  test2.id="2";
  conditons.push(test1);
  conditons.push(test2);
  $(function(){
    $.ajax({
      async:"false",
      type:'post',
      url:'鏈接', 
      data:{name:"123",conditions:JSON.stringify(conditons)},
      dataType : 'json', 
      success:function(data){
        console.log(data);
      },
      error: function (XMLHttpRequest, textStatus, errorThrown){
        alert("error");
      }
    });
  });

重點注意:將對象數組轉為JSON形式的字符串:JSON.stringify

後端獲取:

String conditions = request.getParameter("conditions");
JSONArray conditionList = JSONArray.fromObject(conditions);

以上就是小編為大家帶來的JS傳遞對象數組為參數給後端,後端獲取的實例代碼全部內容了,希望大家多多支持~

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved