1

在注销过程中,我正在调用 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;
}
4

1 回答 1

1

您是否包括https://js.appcenter.intuit.com/Content/IA/intuit.ipp.anywhere.js?我不确定“未捕获的 TypeError ......”的起源

这个简单的测试 HTML 页面运行良好:https : //dl.dropbox.com/u/19213950/logout.html 登录 AppCenter 后,单击此测试 HTML 上的注销链接,您应该会看到 AppCenter 会话无效.

于 2013-02-12T04:39:23.970 回答