This website works better with JavaScript
Accueil
Explorer
Aide
S'inscrire
Connexion
mei_you_ni_dong
/
doc
Suivre
3
Voter
2
Fork
1
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
b2cfeeadd7
Branches
Tags
master
doc
/
前端
/
react
/
6.React ajax.md
6.React ajax.md
476 B
Historique
Raw
1.定义
React本身只关注于界面, 并不包含发送ajax请求的代码
前端应用需要通过ajax请求与后台进行交互(json数据)
react应用中需要集成第三方ajax库(或自己封装)
2.常见库
jQuery: 比较重, 如果需要另外引入不建议使用
axios: 轻量级, 建议使用 1) 封装XmlHttpRequest对象的ajax 2) promise风格 3) 可以用在浏览器端和node服务器端
3.axios
https://github.com/axios/axios