gpt4 book ai didi

javascript - jquery ajax 出现错误 "function not defined"

转载 作者:行者123 更新时间:2023-11-28 05:54:57 25 4
gpt4 key购买 nike

我正在从 jquery ajax 返回一些值。我得到了结果,但我也收到了错误。请首先看一下代码

function get_CommentCount(handleData) {
$.ajax({
url: 'Profile/get_CommentCount',
type: "post",
dataType: 'json',
success: function(data) {
handleData(data);
}
});
}

像这样调用这个函数

get_CommentCount(function(output) {
console.log('output', output)
});

它给我错误:TypeError:handleData不是一个函数。请任何人告诉我为什么我会收到此错误。我已经解决了 stackoverflow 的问题,但没有找到适合我的解决方案。也许你发现它重复,但我在浏览 stackoverflow 后发布了这个问题。

谢谢

最佳答案

在你的ajax的成功函数中,你已经编写了handle(data),并且它是一个你没有在任何地方编写的函数,所以这个错误向你显示TypeError:handleData不是一个函数 所以你定义了一个像

这样的函数
function handleData(data)
{
alert(data);
}

这对你有用。

关于javascript - jquery ajax 出现错误 "function not defined",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37784184/

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