0

JQuery.Ajax を使用して Web サービスとの通信を試みました

コードは次のようになります。

Main.onLoad = function() {
    // Enable key event processing
    this.enableKeys();
    widgetAPI.sendReadyEvent();
    //$("#h2Test").html("Change On Text");

        $.ajax({
                    url : 'http://---.--.---.--:-----/_layouts/-----/------.asmx?op=retrieveEvents',
                    type : "POST",
                    dataType : 'json',
                    contentType : 'application/json',
                    data : {
                        url : "someURL"
                    },
                    success : function(response) {
                        $("#h2Test").html("SUCCESS");
                    },
                    failure : function(response) {
                        $("#h2Test").html("FAIL");
                    }
        });
};

コードを実行すると、SUCCESS または FAIL の代わりに Change On Text が表示されます。コードが成功またはエラーにならないのはなぜですか

4

2 に答える 2

1

http://api.jquery.com/jQuery.ajax/によると、

failure: function(response) {

error: function(response) {

おそらくエラー関数に到達するはずです。

于 2013-10-14T08:15:40.503 に答える