html页面引用axios使用,在普通html页面中使用axios问题

2022/3/6 6:16:38

本文主要是介绍html页面引用axios使用,在普通html页面中使用axios问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

<!-- 引入axios -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

getDataOrder: function (ordernos, appid) {
let _this = this;
// let Url = 'http://xxx.xxx.xxx/xxx/xxx/xxx/xxx?appid=aGFsZXN1bg&ordernos=HS190305081,HS190305080';
axios({
headers: {
'Content-Type': 'application/json;charset=UTF-8'
},
method: 'get',
url: Url,
params: {
appid: appid,
ordernos: ordernos,
}
}).then(function (response) {
if (response.data.code === 0) {
_this.datalist = response.data.data;
_this.message = response.data.message;
}
}).catch(function (error) {
console.log(error)
_this.$message({
type: 'error',
message: error.message
})
})
},

 



这篇关于html页面引用axios使用,在普通html页面中使用axios问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程