質問編集履歴
1
内容の編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -74,7 +74,7 @@
|
|
74
74
|
|
75
75
|
url: "./php/main.php", // 送り先
|
76
76
|
|
77
|
-
data: {
|
77
|
+
data: { data: send_data }, // 渡したいデータ
|
78
78
|
|
79
79
|
dataType: "json", //データ形式を指定
|
80
80
|
|
@@ -82,19 +82,11 @@
|
|
82
82
|
|
83
83
|
})
|
84
84
|
|
85
|
-
.done(
|
85
|
+
.done(function (data, status, xhr) {
|
86
86
|
|
87
|
-
|
87
|
+
console.log('成功');
|
88
88
|
|
89
|
-
console.log('成功'); // 帰ってきたら実行する処理
|
90
|
-
|
91
|
-
},
|
92
|
-
|
93
|
-
function (XMLHttpRequest, textStatus, errorThrown) {
|
94
|
-
|
95
|
-
console.log(errorThrown); // エラー表示
|
96
|
-
|
97
|
-
|
89
|
+
})
|
98
90
|
|
99
91
|
})
|
100
92
|
|
@@ -104,6 +96,8 @@
|
|
104
96
|
|
105
97
|
}
|
106
98
|
|
99
|
+
|
100
|
+
|
107
101
|
})
|
108
102
|
|
109
103
|
```
|
@@ -112,7 +106,7 @@
|
|
112
106
|
|
113
107
|
header('Content-type: application/json; charset=utf-8');
|
114
108
|
|
115
|
-
$data = filter_input( INPUT_POST, '
|
109
|
+
$data = filter_input( INPUT_POST, 'send_data' );
|
116
110
|
|
117
111
|
|
118
112
|
|