XMLHttpRequest.send的数据php接收代码
时间: 2024-04-30 08:17:20 浏览: 185
sms短信接收发送code,php
4星 · 用户满意度95%
好的,关于XMLHttpRequest.send的数据php接收代码,可以参考下面的示例:
JS代码:
```
var xhr = new XMLHttpRequest();
xhr.open('POST', 'example.php', true);
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
console.log(xhr.responseText);
}
};
var data = {
name: 'John',
age: 28
};
xhr.send(JSON.stringify(data));
```
PHP代码:
```
$data = json_decode(file_get_contents('php://input'), true);
echo 'Name: ' . $data['name'] . ', Age: ' . $data['age'];
```
以上代码中,XMLHttpRequest.send发送了一个包含name和age两个属性的JSON对象给example.php文件,然后在PHP文件中通过解析php://input获取JSON数据,并使用json_decode转换成数组,最后输出数据到控制台。
阅读全文