我在php中有一个函数,该函数返回字符串的json_encoded
版本,但是当我console.log
从我的react应用程序中的json_encoded数据通过axios获得响应时,该数据通常是空,通常是这样的Object {data: "", status: 200, statusText: "OK", headers: Object, config: Object…}
,请问可能是什么问题
PHP文件
header("Access-Control-Allow-Origin: *");
return json_encode("works");
反应文件
import axios from 'axios';
class LoginComponent extends Component {
componentDidMount() {
axios.get('http://localhost/login.php')
.then(response => {
console.log(response);
})
.catch(function (error) {
console.log(error);
})
}