0
我想將我的變量javascript發佈到php文件。 我不能發佈變量,但能夠傳遞json數據。將變量從JavaScript傳遞到php(通過獲取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文件格式 –
阿賈克斯,我只希望使用取... –