jquery 에서 ajax 를 통 해 웹 서 비 스 를 호출 하여 배열 매개 변 수 를 전달 하 는 문제

제목 과 같다.
아니면 직접 예 를 들 어 직접 설명 하 는 것 이 좋 겠 습 니까?
본인 의 프로젝트 에서 jquery. ajax 를 통 해 웹 서 비 스 를 호출 합 니 다.
클 라 이언 트 코드 는 다음 과 같 습 니 다.
 1             $.ajax({
 2                 url: "test/xxx.asmx",
 3                 type: 'POST',
 4                 dataType: 'xml',
 5                 timeout: 1000,
 6                 data: { name: "zhangsan", tags: ["aa", "bb", "cc"] },
 7                 error: function(xml) {
 8                     alert(xml.responseText);
 9                 },
10                 success: function(xml) {
11                     alert("OK");
12                 }
13 
14             });

서버 코드 는 다음 과 같 습 니 다.
1   [WebMethod]
2     public XmlDocument xxx(string name, string [] tags )
3     { 
4          return sth;  
5     }

자꾸 이상 을 던 져 요.
문 제 는 여기에 나타난다.
다음은 HTTP 데이터:
POST http://xxx.com/xxx.asmx/xxx HTTP/1.1
Host: center.cmis.htpc.com.cn
Connection: keep-alive
Content-Length: 55
Cache-Control: max-age=0
Origin: http://xxx.com
User-Agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept: application/xml, text/xml, */*; q=0.01
Referer: http://xxx.com/xxx.aspx
Accept-Encoding: gzip,deflate,sdch
Accept-Language: zh-CN,zh;q=0.8
Accept-Charset: GBK,utf-8;q=0.7,*;q=0.3

name=zhangsan&tags%5B%5D=aa&tags%5B%5D=bb&tags%5B%5D=cc

그 가 원 하 는 형식 은 다음 과 같다.
POST /xxx.asmx/xxx HTTP/1.1
Host: xxx.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

name=string&tags=string&tags=string

위의 굵 은 몸 체 를 비교 하면 post 의 데 이 터 는 문 제 를 제외 하고 정확 한 것 은 다음 과 같 아야 합 니 다.
name=zhangsan&tags=aa&tags=bb&tags=cc

문제 가 jquery. ajax 위 에 있 는 것 같 습 니 다. 코드 참조 (jquery. 1.8.3. js)
 1     function buildParams(prefix, obj, traditional, add) {
 2         var name;
 3 
 4         if (jQuery.isArray(obj)) { 
 5             // Serialize array item.
 6             jQuery.each(obj, function(i, v) {
 7                 if (traditional || rbracket.test(prefix)) {                    
 8                     // Treat each array item as a scalar.
 9                     add(prefix, v);
10 
11                 } else {
12                     // If array item is non-scalar (array or object), encode its
13                     // numeric index to resolve deserialization ambiguity issues.
14                     // Note that rack (as of 1.0.0) can't currently deserialize
15                     // nested arrays properly, and attempting to do so may cause
16                     // a server error. Possible fixes are to modify rack's
17                     // deserialization algorithm or to provide an option or flag
18                     // to force array serialization to be shallow.
19                     
20                     //ytx 20130411
21                     buildParams(prefix, v, traditional, add);
22                     //buildParams(prefix + "[" + (typeof v === "object" ? i : "") + "]", v, traditional, add);
23                 }
24             });
25 
26         } else if (!traditional && jQuery.type(obj) === "object") {
27             // Serialize object item.
28             for (name in obj) {
29                 buildParams(prefix + "[" + name + "]", obj[name], traditional, add);
30             }
31 
32         } else {
33             // Serialize scalar item.
34             add(prefix, obj);
35         }
36     }

결론:
문제 가 생 긴 코드 는 22 줄 입 니 다. 21 줄 로 수정 하면 됩 니 다.
하지만 저 는 js / jquery 에 대해 수박 겉 핥 기 식 으로 알 고 있 습 니 다. 다른 후유증 을 일 으 키 지 않 았 으 면 좋 겠 습 니 다. 하하.
 
 
 
 
다음으로 전송:https://www.cnblogs.com/YFree/archive/2013/04/11/3015356.html

좋은 웹페이지 즐겨찾기