文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Vue项目如何创建首页发送axios请求

2023-07-05 04:15

关注

这篇文章主要介绍了Vue项目如何创建首页发送axios请求的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Vue项目如何创建首页发送axios请求文章都会有所收获,下面我们一起来看看吧。

这是个全新的Vue项目,引入了ElementUI

Vue项目如何创建首页发送axios请求

 将App.vue里的内容干掉,剩如下

Vue项目如何创建首页发送axios请求

然后下面的三个文件也可以删掉了

Vue项目如何创建首页发送axios请求

Vue项目如何创建首页发送axios请求

在views文件下新建Login.vue组件

Vue项目如何创建首页发送axios请求

 到router目录下的index.js

Vue项目如何创建首页发送axios请求

 那么现在的流程大概是这样子的

Vue项目如何创建首页发送axios请求

 启动

Vue项目如何创建首页发送axios请求

 写登陆页面

<template>  <div>    <el-form :ref="form" :model="loginForm" class="loginContainer">      <h4 class="loginTitle">系统登录</h4>      <!-- auto-complete="false"自动补全 -->      <el-form-item label="">           <el-input type="text" auto-complete="false" v-model="loginForm.username" placeholder="请输入用户名"></el-input>      </el-form-item>      <el-form-item label="">        <el-input type="text" auto-complete="false" v-model="loginForm.password" placeholder="请输入密码"></el-input>      </el-form-item>      <el-form-item label="">        <el-input type="text" auto-complete="false" v-model="loginForm.code" placeholder="点击图片更换验证码" ></el-input>        <img :src="captchaUrl"/>       </el-form-item>       <el-checkbox v-model="checked" class="loginRemeber">记住我</el-checkbox>       <el-button type="primary" >登录</el-button>    </el-form>  </div></template> <script>export default {    name:"Login",    data(){        return{            captchaUrl:'',//验证码图片链接            loginForm:{                username:'admin',                password:'123456',                code:'1234'            },            checked:true        }    } }</script> <style>    .loginContainer{        border-radius: 15px;        background-clip: padding-box;        margin:180px auto;        width:350px;        padding: 15px 35px 15px 35px;        background: #a8dad5;        border:1px solid #eaeaea;        box-shadow: 0 0 25px #cac6c6;    }    .loginTitle{        margin: 0px auto 40px auto;        text-align: center;    }    .loginRemeber{        text-align: left;        margin:0px 0px 15px 0px;    }</style>

Vue项目如何创建首页发送axios请求

给登录按钮添加点击事件

Vue项目如何创建首页发送axios请求

添加方法

Vue项目如何创建首页发送axios请求

Vue项目如何创建首页发送axios请求

 添加表单校验  暂时先吧:ref="form"去掉

Vue项目如何创建首页发送axios请求

Vue项目如何创建首页发送axios请求

校验的username,password,code需要和上面的对应上 需要加prop属性

Vue项目如何创建首页发送axios请求

测试,校验规则是存在的,但是出现的问题是点击表单还是生效的

Vue项目如何创建首页发送axios请求

在点击登录时候添加表单校验

Vue项目如何创建首页发送axios请求

Vue项目如何创建首页发送axios请求

会自动根据我们自己定义的校验规则来校验,还是将用户名长度改成5位好了 

Vue项目如何创建首页发送axios请求

Vue项目如何创建首页发送axios请求

Vue项目如何创建首页发送axios请求

用ElementUI的showMessage

Vue项目如何创建首页发送axios请求

Vue项目如何创建首页发送axios请求

效果如下

Vue项目如何创建首页发送axios请求

接下来需要发送axios请求

安装axios

Vue项目如何创建首页发送axios请求

安装完成,可以在package.json文件看到

Vue项目如何创建首页发送axios请求

 组件里引入

Vue项目如何创建首页发送axios请求

Vue项目如何创建首页发送axios请求

 这里我随便建个后端,先进行演示,会出现跨域现象,这里跨域先不讲

Vue项目如何创建首页发送axios请求

 看下返回的信息里有什么

Vue项目如何创建首页发送axios请求

<template>  <div>    <el-form :rules="rules" ref="form" :model="loginForm" class="loginContainer">      <h4 class="loginTitle">系统登录</h4>      <!-- auto-complete="false"自动补全 -->      <el-form-item prop="username">           <el-input type="text" auto-complete="false" v-model="loginForm.username" placeholder="请输入用户名"></el-input>      </el-form-item>      <el-form-item prop="password">        <el-input type="text" auto-complete="false" v-model="loginForm.password" placeholder="请输入密码"></el-input>      </el-form-item>      <el-form-item prop="code">        <el-input type="text" auto-complete="false" v-model="loginForm.code" placeholder="点击图片更换验证码" ></el-input>        <img :src="captchaUrl"/>       </el-form-item>       <el-checkbox v-model="checked" class="loginRemeber">记住我</el-checkbox>       <el-button type="primary"  @click="submitLogin">登录</el-button>    </el-form>  </div></template>  <script>import axios from 'axios'export default {    name:"Login",    data(){        return{            captchaUrl:'',//验证码图片链接            loginForm:{                username:'admin',                password:'123456',                code:'1234'            },            checked:true,            rules:{                username:[                    {required:true,message:'请输入用户名',trigger:'blur'},                    {min:5,max:12,message:'用户名长度6到12位',trigger:'blur'}                ],                password:[                    {required:true,message:'请输入密码',trigger:'blur'},                    {min:6,max:12,message:'密码长度6到12位',trigger:'blur'}                ],                code:[                    {required:true,message:'请输入验证码',trigger:'blur'},                    {min:4,max:4,message:'验证码长度4位',trigger:'blur'}                ],            }        }    },    methods:{        submitLogin(){            this.$refs.form.validate((valid)=>{                if(valid){                    axios.post('http://localhost:8081/demo',{username:"xxx",password:"123456",code:"1234"}).then((res)=>{                        console.log(res)                                            })                }else{                    this.$message.error('请输入正确格式')                    return false                }                })        }    } }</script> <style>    .loginContainer{        border-radius: 15px;        background-clip: padding-box;        margin:180px auto;        width:350px;        padding: 15px 35px 15px 35px;        background: #a8dad5;        border:1px solid #eaeaea;        box-shadow: 0 0 25px #cac6c6;    }    .loginTitle{        margin: 0px auto 40px auto;        text-align: center;    }    .loginRemeber{        text-align: left;        margin:0px 0px 15px 0px;    }</style>

关于“Vue项目如何创建首页发送axios请求”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Vue项目如何创建首页发送axios请求”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯