2016-07-14 7 views
0

にAJAX呼び出しのためのケースを失敗:ライティングは、私はAJAX呼び出しのコードを以下していると私は同じことを書くことができ、コードブロックの一片以下の障害が発生したAJAX call.In上のカスタムエラーを書きたいと思いgetJSON

$.getJSON("/ProductMatrix/CaptureCategoryTypeList/" + $("#categoryFilter > option:selected").attr("value"), 
      function (data) { 
       var items = "<option> Default </option>"; 
       $.each(data, 
        function (i, captureCategoryType) { 
         items += "<option value=' " + captureCategoryType.Value + "'>" + captureCategoryType.Text + "</option>"; 
        }); 
       $("#categoryTypeFilter").html(items); 
       SherlockAdmin.Shared.closeProcessingWheel(); 
      }); 
+0

'$ .getJSON(...、機能(データ){....})からコード

// Assign handlers immediately after making the request, // and remember the jqxhr object for this request var jqxhr = $.getJSON("example.json", function() { console.log("success"); }) .done(function() { console.log("second success"); }) .fail(function() { console.log("error"); }) .always(function() { console.log("complete"); }); // Perform other work here ... // Set another completion function for the request above jqxhr.complete(function() { console.log("second complete"); }); 

と同じくらい簡単です。(関数(結果を)失敗{//行います何か}); ' –

+0

ありがとうスティーブン!それは魅力のように働いた! – Chanchal

答えて

関連する問題