欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用axios

程序员文章站 2022-07-02 21:24:38
...

使用axios

1.什么是axios
Axios 是一个基于 promise 的 HTTP 库,可以用在浏览器和 node.js 中。

2.安装axios
npm install axios

3.axiso api

					getList: function() {
						`在这里插入代码片`
						axios({
							method: 'get', //请求类型
							url: 'http://127.0.0.1:8080/esale/organ/queryList.do' //请求接口
						}).then(function(res) { //请求成功返回 res返回值
							console.log(res)
						}).catch(function(error) { //请求失败
							console.log(error)
						})
					},
具体可以参考官网,有更详细的介绍[添加链接描述](http://axios-js.com/zh-cn/docs/)
相关标签: axios