gpt4 book ai didi

javascript - "undefined is not a function"onSuccessHandler

转载 作者:行者123 更新时间:2023-11-30 12:55:44 24 4
gpt4 key购买 nike

我的数据源文件有一些问题,在线 onSuccessHandler( xmlRequest.responseText );这是代码

function initializeHttpRequest ( feedURL, onSuccessHandler, onErrorHandler ) {
var onloadHandler = function( ) {
if ( xmlRequest.readyState==4 && xmlRequest.status == 200 ) {
onSuccessHandler( xmlRequest.responseText );
}

};

我按以下方式使用 initializeHttpRequest:

initializeHttpRequest(httpfeed, onSuccess(), onFailure()); 
// where function onSuccess() { alert('true');}
// function onFailure() { alert('true');}

我调用的任何导致错误“undefined is not a function”的 JSON 服务需要帮助,已经有一段时间在上面了,而且也不熟悉它..谢谢

最佳答案

去掉括号。您正在调用您的函数,而不是调用 initializeHttpRequest 并引用它们:

initializeHttpRequest(httpfeed, onSuccess, onFailure);
// ^^ ^^

因为 onSuccessonFailure 都不返回任何值,所以它们的返回值为 undefined 并且您会收到错误消息。

关于javascript - "undefined is not a function"onSuccessHandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19219589/

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