|
@@ -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("送出失敗");
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
});
|
|
|
|