在注销过程中,我正在调用 intuit.ipp.anywhere.logout 并将其传递给回调函数。回调函数处理正确;但是,它不会退出应用中心。还有其他人有类似的问题吗?
logout: function (callback) {
intuit.ipp.jQuery.ajax({
Uncaught TypeError: Cannot call method 'ajax' of undefined (repeated 2 times)
url: "https://" + intuit.ipp.anywhere.serviceHost + "/Account/LogoutJSONP?callback=?",
dataType: "jsonp",
complete: function () {
callback();
//intuit.ipp.anywhere.view.popup.hide();
}
});
//intuit.ipp.anywhere.view.logout.render(callback);
return false;
}