我想最终将php文件中的函数调用到我的reactjs项目上,所以只是为了摸索表面,我试图做一个基本的get请求,但是在控制台中,我看到的只是:
Here's it is [object Response]
这不是我想要发生的事情。
我在做什么错,我该如何解决?
这是我的js代码:
import React, { Component } from 'react';
class Home extends Component {
componentWillMount() {
fetch("http://localhost/myProject/phpCalls/index.php", {
method: 'GET'
})
.then(res => {
console.log("Here's it is " + res);
});
}
render() {
return (
<h1>testing</h1>
);
}
}
export default Home;
这是我的php文件:
header('Content-Type: application/json');
function hey() {
echo "Will I see this?";
}
$test = $_GET['do'];
if($test === "hey") {
hey();
}