axios 简单方法个人理解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios 简单方法个人理解相关的知识,希望对你有一定的参考价值。
1、手动下载 axios 方式 npm install axios || <script src="https://unpkg.com/axios/dis/axios.min.js"></script >
2、bower install axios
3、 import axios from "axios";
1、 axios.get( ‘ url ‘ ).then((response) => console.log(response) ).catch((error) => console.log(err));
2、axios.post( ‘ url ‘ ).then((response) => console.log(response)).catch((err) => console.log(err));
3、const demo1 = () => { retrun axios.get(‘ app/userName ‘) }; const demo2 = () => { retrun axios.get(‘ app/userName ‘) };
axios.all([demo1(), demo2()]).then((acct, perms) => console.log(acct, perms))
4、axios({ method: ‘ post ‘ , url : " /user/list ", data: { fistName: " zhangsan ", age: " 18 " } })
以上是关于axios 简单方法个人理解的主要内容,如果未能解决你的问题,请参考以下文章
#yyds干货盘点# linux iscsi 简单实现windows文件互通和实现多路径访问,并实现负载均衡高可用超详细配置方法和原理的个人理解