vue+axios使用post请求
2022/4/26 6:14:22
本文主要是介绍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请求的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-04React 19 来了!新的编译器简直太棒了!
- 2025-01-032025年Node.js与PHP大比拼:挑选最适合的后端技术进行现代web开发
- 2025-01-03?? 用 Gemini API、Next.js 和 TailwindCSS 快速搭建 AI 推文生成项目 ??
- 2024-12-31Vue CLI多环境配置学习入门
- 2024-12-31Vue CLI学习入门:一步一步搭建你的第一个Vue项目
- 2024-12-31Vue3公共组件学习入门:从零开始搭建实用组件库
- 2024-12-31Vue3公共组件学习入门教程
- 2024-12-31Vue3学习入门:新手必读教程
- 2024-12-31Vue3学习入门:初学者必备指南
- 2024-12-30Vue CLI多环境配置教程:轻松入门指南