axios 和 element的使用
Posted konge!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios 和 element的使用相关的知识,希望对你有一定的参考价值。
axios的使用:
/**
*
* 使用axios的步骤;
* 第一步安装 npm install --save axios vue-axios
第二步,在mian.js中导入和配置,
引入:
import axios from ‘axios‘
Vue.use(axios)
配置 :
axios.defaults.baseURL="https://wd4363557576ckikwp.wilddogio.com/"
第三步在你要使用的文件下引用axios
*/
axios 发送数据:
const fromData={
age:this.ruleForm.age,
pass:this.ruleForm.pass
}
//发送数据
axios.post(‘./axiosT.json‘,fromData)
.then(res=>{//当数据发送成功时回调
console.log("数据发送成功")
console.log(res.data)
})
.catch((error)=>{
console.log(error)
})
接受数据:
mounted () {
var that = this
axios.get(‘/Produce.json‘)
.then(function(response){
console.log(response.data)
that.produce=response.data
})
}
以上是关于axios 和 element的使用的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段14——Vue的axios网络请求封装