0
でreactjsするPHPからJSONを返す:私は修正することができますように私は、プレーンテキストを返してエラーは、現在のコードがreactjsを働いたとバージョン0.14.2とaxiosでAJAXリクエストを実行しているaxios
componentWillMount(){
const peticion = this;
const config = {
headers: {'X-Requested-With': 'XMLHttpRequest'},
transformRequest: [function (data) { return data; }],
transformResponse: [function (data) { return data; }],
//responseType: 'json'
};
axios.get('procesos/lista.php', config)
.then(function (r){
console.log(r);
peticion.setState({
datos:[r.data] | []
});
})
.catch(function (error) {
console.log(error);
});
}
それ。