当前代码正在使用 reactjs 并使用 0.14.2 版本的 axios 执行 ajax 请求:
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);
});
}
我正在返回纯文本,因为我可以修复它。