如何在jQuery中使用Ajax.request传递参数?

时间:2014-09-10 07:29:19

标签: javascript jquery ajax

我需要在发出Ajax请求时传递参数,并在请求成功时在.done中检索它。 知道怎么做吗?

var requestFeed;
requestFeed = Ajax.request(url, {
                    method: 'GET',
                    type: 'json',
                    cache: true,
                    timeout: CONFIG.ajax.timeout
                });
requestFeed.done(function(resp, myParameter){ // NOTE HERE
// get myParameter and do smt with data
});

1 个答案:

答案 0 :(得分:0)

如果您想发送" myParameter"服务器的价值你可以做那样的事情

$.ajax({ 
    url: url,
    data: { ParameterNameOnServer: myParameter }
}).done(function (returndata) {
    alert(returndata);
});