Lyrics


< More and better />


react Ajax请求

天气尚好,适合写bug

fetch (建议使用,因为react native 也使用这种的方法)

代码的话,可以看上一篇的代码fetch之坑

superagent

  1. import request from ‘superagent’;

代码

react:

1
2
3
4
5
6
7
8
9
10
11
12
request
.post(`${URL.url}`)
.send(data)
.set('Accept', 'application/json')
.end(function(res){
if(res.ok){
console.log(res.body)
}
else{
console.log(res.text)
}
})

后台都一样