react Ajax请求 2017-11-18 天气尚好,适合写bugfetch (建议使用,因为react native 也使用这种的方法)代码的话,可以看上一篇的代码fetch之坑 superagent import request from ‘superagent’; 代码 react: 123456789101112request .post(`${URL.url}`) .send(data) .set('Accept', 'application/json') .end(function(res){ if(res.ok){ console.log(res.body) } else{ console.log(res.text) } }) 后台都一样 Please enable JavaScript to view the comments powered by Disqus.