gpt4 book ai didi

javascript - chrome ajax发布错误

转载 作者:行者123 更新时间:2023-12-03 09:52:31 26 4
gpt4 key购买 nike

我希望通过 ajax 发送表单详细信息,但每次点击“提交”按钮时,都会收到错误

 POST http://192.***.**.***:****/api/csl net::ERR_CONNECTION_TIMED_OUT


m.ajaxTransport.send @ jquery.min.js:4
m.extend.ajax @ jquery.min.js:4
(anonymous function) @ index.html:278
m.event.dispatch @ jquery.min.js:3
m.event.add.r.handle @ jquery.min.js:3
m.event.trigger @ jquery.min.js:3
(anonymous function) @ jquery.min.js:3
m.extend.each @ jquery.min.js:2
m.fn.m.each @ jquery.min.js:2
m.fn.extend.trigger @ jquery.min.js:3
m.each.m.fn.(anonymous function) @ jquery.min.js:4
(anonymous function) @ index.html:223
m.event.dispatch @ jquery.min.js:3
m.event.add.r.handle @ jquery.min.js:3

 Uncaught SyntaxError: Unexpected end of input on index line :1 

这是我遇到问题的代码

$.ajax({
type: "POST",
dataType: "json",
//contentType: "application/x-www-from-urlencoded; charset=UTF-8",
url: 'http://192.***.**.***:**/api/csl',
data: source,
success: function (data) {
console.log("in ajax");
var resultsList = data;
var source = $('#renderCalculation').html();
var template = Handlebars.compile(source);
calcTable.html(template(resultsList));
$('#tblCalc td:nth-child(2)').each(function(d, e) {
$(e).text("$" + parseFloat($(this).text()).formatMoney(2));
});
},
error: function (error) {
jsonValue = jQuery.parseJSON(error.responseText);
}
});
});

我从浏览器端收到错误

最佳答案

除了其他错误之外,您还剩下一个 });

关于javascript - chrome ajax发布错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30848869/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com