質問編集履歴
1
phpを追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,13 +42,33 @@
|
|
42
42
|
|
43
43
|
```PHP
|
44
44
|
|
45
|
-
sleep(15);
|
45
|
+
sleep(15);
|
46
|
+
|
47
|
+
$response['result'] = array(
|
48
|
+
|
49
|
+
'res1' => 'res1',
|
50
|
+
|
51
|
+
'res2' => 'res2',
|
52
|
+
|
53
|
+
'res3' => 'res3',
|
54
|
+
|
55
|
+
'res4' => 'res4'
|
56
|
+
|
57
|
+
);
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
echo json_encode($response);
|
62
|
+
|
63
|
+
|
46
64
|
|
47
65
|
```
|
48
66
|
|
49
67
|
を記載しています。
|
50
68
|
|
69
|
+
|
70
|
+
|
51
|
-
15秒後に.doneの方に
|
71
|
+
15秒後に.doneの方に戻ってきてしまいます。
|
52
72
|
|
53
73
|
渡すdataに不備があると、.failの処理に入り「textStatus=parsererror」となっています。
|
54
74
|
|