Javascript

vue+axios使用post请求

本文主要是介绍vue+axios使用post请求,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
 1                     const _this = this;
 2                     const params = new URLSearchParams();
 3                     params.append('title', _this.repositoryTitle);
 4                     params.append('content', _this.InputContent);
 5                     axios.post("http://localhost:8080/repository/addRepository", params)
 6                         .then((response) => {
 7                             if (response.status === 200) {
 8                                 if (response.data === 'success') {
 9                                     _this.$message({
10                                         message: '提交成功,感谢您的贡献!',
11                                         type: 'success'
12                                     });
13                                     //调用延时之前先清除timer的延时
14                                     clearTimeout(this.timer); //清除延迟执行
15                                     this.timer = setTimeout(() => {  //设置延迟执行,为了能看到上面成功的提示
16                                         console.log('设置延迟执行为了能看到登录成功的提示');
17                                         window.location = "http://localhost:8080";//返回主页面
18                                     }, 1000);//延时1秒
19                                 } else {
20                                     _this.$message.error(response.data.toString());
21                                 }
22                             }
23                         }).catch((error) => {
24                         console.log.info('------->接口返回数据error', error);
25                         _this.$message.error(error.toString());
26                     });

 

这篇关于vue+axios使用post请求的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!