我有一个项目(在线机票),在这个项目中我需要一个 Json 方法(或其他方法)来检查航班详细信息。我必须向 URL 发布请求,如下所示。(curl -XPOST -H "Content-Type: application/json" http://testapi.xxx.com/rest/flightSearch/YOUR_CODE_HERE -d @request.json) 如何将参数发布到 url 并获取回答是否有可用的航班?json格式如下。“fromAirport”:“ESB”,“toAirport”:“IST”,“fromDate”:“2013-02-01”,“adult”:1 }
问问题
385 次
1 回答
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;
})
};
于 2013-02-28T17:00:27.460 回答