发布json.request参数

时间:2013-02-28 16:53:30

标签: json

我有一个项目(在线机票),在这个项目中我需要一个Json方法(或其他)来检查航班的详细信息。我必须将请求发送到Url,如下所示。 (curl -XPOST -H“Content-Type:application / json”http://testapi.xxx.com/rest/flightSearch/YOUR_CODE_HERE -d @ request.json) 如何将参数发布到网址,如果有可用的航班可以得到答案? json格式如下。 }     “fromAirport”:“ESB”,     “toAirport”:“IST”,     “fromDate”:“2013-02-01”,     “成人”:1 }

1 个答案:

答案 0 :(得分:1)

以下是一个例子:

function PostMyRequest(from, to, date, adult) {
         $(document).ready(function () {

             $.ajax({
                 url: 'http://testapi.xxx.com/rest/flightSearch/YOUR_CODE_HERE',
                 contentType: "application/json; charset=utf-8",
                 dataType: "json",
                 data: { 'fromAirport': from, 'toAirport': to, 'fromDate': date, 'adult': adult },
                 responseType: "json",
                 success: function(data){
                    alert( data );
                 error: OnFail  //call some function if you want
             });
             return false;
         })
     };