jQuery ajax post 未捕获的 RangeError:超出最大调用堆栈大小
2016-06-17
48631
我遇到了 jQuery ajax 问题。 我有 javascript
<script type="text/javascript">
$(function() {
$('body').on("click", "#pager a", function(e) {
e.stopPropagation();
e.preventDefault();
var a = $(this);
var model = $('#searchForm').serialize();
$.ajax({
url: '/Product/Products',
type: 'POST',
data: {
model: model, page: a
},
success: function (data) {
alert('success');
$('#productsList').html(data);
}
});
});
});
</script>
此代码产生错误“Uncaught RangeError:超出最大调用堆栈大小”,我不明白为什么。我没有触发器,我使用了preventDefault和stopPropagation,但仍然出现此错误。有人能帮助我吗?
3个回答
如果您在数据中传递了未在该范围内定义的内容,也会出现此错误。 另一个原因是直接使用 val() 传递数据。
Gaurav Tyagi
2017-04-07
不要使用 var a = $(this) 来获取页面,而是使用一个隐藏字段并将页面值赋予该字段。
<input type="hidden" value="xyzpage" id="pageValue">
var pageVal = $("#pageValue").val();
data: {
model: model, page:pageVal
},
我猜这会解决问题
Akhil Menon
2016-06-17
我想分享我的经验,
就我的情况而言,只是参数名称错误,错误消息完全相同: 我输入的是 configID,而不是 confID,结果出现此错误。
function openNameEditor() {
var confID = $("#configStatusList").attr("data-id");
debugger;
$.ajax({
url: '@Url.Action("GetModelNameToChange", "Admin")',
type: "GET",
dataType: "HTML",
data: { configID: configID},//Here, instead of confID, I put configID which doesn't exist in the function.
success: function (response) {
$("#name-editor").html(response);
},
error: function (er) {
alert(er.error);
}
});
}
Coskun Ozogul
2021-01-14