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:
- 请求地址
- 请求参数
- 响应结果(打开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=>{
})