我正在尝试使用以下代码从AJAX调用获得响应。但是,AJAX部分似乎并没有被解雇。
知道缺少什么吗?
$(function() {
$('#applyVoucher').on('click', function(e) {
$(this).fadeTo("fast", .5).removeAttr("href");
$(this).html('Applying...');
$.extend({
xResponse: function(url, data) {
var theResponse = null;
$.ajax({
url: url,
type: 'post',
data: data,
async: false,
dataType: 'json',
success: function(json) {
theResponse = json;
}
});
return theResponse;
}
});
var json = $.xResponse('/voucher/json', {voucher_code: $('input[name=_token]').val(), _token: token});
});
});