标签:安装 var div data ted ons orm 导入 http
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
})
}
标签:安装 var div data ted ons orm 导入 http
原文地址:https://www.cnblogs.com/jflalove/p/11944483.html