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

vue中的axios请求

程序员文章站 2022-07-04 21:34:44
...

ajax请求

$..ajax({
url:'http://172.16.16.100/comments/getcomments.php?',
type:'GET',
data:{},
success:function(data){
//这个data就是我们请求到的结果
}

发送ajax:

  1. 请求地址
  2. 请求参数
  3. 响应结果(打开f12看结果,network中的xhr)

axios请求: get&post

axios.get('http://172.16.16.100/comments/getcomments.php?',{
	params:{
	//这里是我们要传递给后台的参数
	key:value
	}
}).then(function(res){
//axios中把请求道的数据封装到了一个对象中,res.data
})
axios.post('http://172.16.16.100/comments/getcomments.php?',{
	key:value
	}).then(res=>{
	
})
相关标签: ajax