无法从响应php脚本发送数据POST

时间:2018-12-23 18:51:41

标签: php reactjs

这是react中的代码:

fetch(base_url + '/api/test', {
  method: 'post',
  body: {
    hello: 'hello'
  },
  headers : { 
    'Content-Type': 'application/json'
  }
})
.then(res => res.json())
.then(respone => console.log(respone))
.catch(err => console.error(err));

这是php中的代码:

<?php
$info = array('logged' => $_POST['hello']);
echo json_encode($info);

请帮助我

0 个答案:

没有答案