jeter20131220 3 年 前
コミット
ae17894cb7
1 ファイル変更6 行追加3 行削除
  1. 6 3
      desktop11/goto.js

+ 6 - 3
desktop11/goto.js

@@ -96,7 +96,7 @@ function onClik() {
     url:'http://172.105.205.52:8001/deco_request_detail',
     data: jsonString,
     dataType: 'json',
-    success: function (data, textStatus) {
+    success: function (data, textStatus, jqXHR) {
 
       alert("送出成功");
     },
@@ -107,9 +107,12 @@ function onClik() {
       alert("complete");
     },
 
-    error: function (XMLHttpRequest, textStatus, errorThrown) {
+    error: function (jqXHR, textStatus, errorThrown) {
+      
+      console.log(JSON.stringify(jqXHR));
+      console.log("AJAX error: " + textStatus + ' : ' + errorThrown);
       alert("送出失敗");
-
+      
     }
   });