返回顶部
首页 > 资讯 > 前端开发 > JavaScript >vue进行post和get请求实例讲解
  • 866
分享到

vue进行post和get请求实例讲解

2024-04-02 19:04:59 866人浏览 八月长安
摘要

目录一、基本使用方法1、get请求2.Post请求使用axios: <script src="https://unpkg.com/axiOS/dist/axios.min.js

使用axios:

<script src="https://unpkg.com/axiOS/dist/axios.min.js"></script>

一、基本使用方法

1、get请求

// Make a request for a user with a given ID
axios.get('/user?ID=12345')
 .then(function (response) {
  console.log(response);
 })
 .catch(function (error) {
  console.log(error);
 });
 
// Optionally the request above could also be done as
axios.get('/user', {
  params: {
   ID: 12345
  }
 })
 .then(function (response) {
  console.log(response);
 })
 .catch(function (error) {
  console.log(error);
 });

2.Post请求

axios.post('/user', {
 firstName: 'Fred',
 lastName: 'Flintstone'
})
.then(function (response) {
 console.log(response);
})
.catch(function (error) {
 console.log(error);
});

 简单示例:

// 在进行 post 和 get 请求的时候,使用 axios 进行访问
// 进行 get 请求
axios.get(url).then(function (response){
    console.log(response);
}).catch(function(error){
    console.log(error);
});
// 进行post 请求            
axios.post(url,{firstName:'Fred',lastName:'Flintstone'}).then(function (response) {
    console.log(response);
}).catch(function (error) {
    console.log(error);
});

 这样发送请求,虽然是可以发送,但是携带的参数,是一个JSON字符串,会出现问题。所以我们在用post发送请求的时候,需要这样:

axios({  
    method:'post',  
    url:url,  
    data:{title:this.title,content:this.content},  
    headers:{'Content-Type': 'application/x-www-fORM-urlencoded'},  
    transformRequest: function(obj) {  
        var str = [];  
        for(var p in obj){  
            str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));  
        }  
        return str.join("&");  
    }  
}).then((res)=>{
    console.log(res.data);
});

上面这种只能提交一些简单的数据,对于复杂的数据,可以考虑使用 QS 对数据进行处理。

使用方法,如果找不到QS文件,可以只用 npm 安装:

npm install qs

下载这个文件之后,使用 script 标签正常引入即可。

使用方法:

var formData = Qs.stringify({imgIds: [48,49],});
axios.post(url,Qs.stringify(this.formData)).then(function (response) {
    console.log(response);
}).catch(function (error) {
    console.log(error);
});

或者是:

axios({
    method: 'post',
    url:url,
    data:Qs.stringify(this.formData),
}).then((res)=>{
    console.log(res);
});

到此这篇关于Vue进行post和get请求实例讲解的文章就介绍到这了,更多相关vue进行post和get请求内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: vue进行post和get请求实例讲解

本文链接: https://lsjlt.com/news/141668.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作