0
。 変数を投稿することはできませんが、jsonデータを渡すことはできます。通過変数(スルーAPIをフェッチ)
このようなコードです。
var check = 'hello';
var check1 = 'hello1';
fetch('http://localhost/react_task/react-webpack-boilerplate/php/api.php', {
method: 'post',
body: JSON.stringify({
a: 2, // here passing variable doesn't work
b: 1 // like check and check1 does't show any values while passing here
})
}) .then(function(response) {
if (response.status >= 200 && response.status < 300) {
return response.text()
}
throw new Error(response.statusText)
})
.then(function(response) {
console.log(response);
})
JavaScriptから変数をPHPに渡す方法を教えてください。 ;;; 単なる例:
私は..反応-JSとファイルタイプJSXに取り組んで作業するので、JSXファイル形式 –
でAJAXを使用してそのハードと私は唯一のフェッチ使用したいのです... –