methods: { submitForm(formName) { this.$refs[formName].validate((valid) => { if (valid) { this.$get("/admin", this.ruleForm) .then((res) => { if (res.data.status) { if (this.checked){ localStorage.setItem("remember",JSON.stringify(this.ruleForm)); } this.$msg(`${res.data.admin.username} ,登陆成功`, "success") sessionStorage.setItem("admin", JSON.stringify(res.data.admin)) this.$router.push("/admin/home") } else { this.$msg(res.data.msg, "error") } })
时间: 2024-02-10 17:06:38 浏览: 81
这是一个Vue.js组件的methods对象,其中包含一个名为submitForm的方法。方法中使用了this.$refs来引用表单组件,调用了validate方法进行表单验证。如果验证通过,则使用this.$get方法发送一个GET请求到/admin路径,并将表单数据作为请求参数。请求成功后,根据响应数据判断是否登录成功,如果成功则使用this.$msg方法弹出提示框,将管理员信息存储到sessionStorage中,并使用this.$router.push方法跳转到管理员首页;否则使用this.$msg方法弹出错误提示框。如果选中了记住密码,则使用localStorage.setItem方法将表单数据存储到本地。
相关问题
submitForm(formName) { this.$refs[formName].validate((valid) => { if (valid) { this.form.refid = this.detail.id; this.form.avatarurl = localStorage.getItem('headportrait') ? localStorage.getItem( 'headportrait') : ''; this.$http.post('discusslvyoujingdian/add', this.form).then(res => { if (res.data.code == 0) { this.form.content = ''; this.getDiscussList(1); this.$message({ type: 'success', message: '评论成功!', duration: 1500, }); } }); } else { return false; } }); }, resetForm(formName) { this.$refs[formName].resetFields(); },
这是一个 Vue.js 组件中的两个方法,`submitForm` 和 `resetForm`。
`submitForm` 方法接受一个表单名作为参数 `formName`,然后使用 `this.$refs[formName]` 获取到该表单组件的引用,接着调用该表单组件的 `validate` 方法进行表单验证。如果表单验证通过,就将一些数据赋值到 `this.form` 对象中,然后使用 `this.$http.post` 方法向服务器发送POST请求,并在请求返回结果为成功时清空表单、重新获取评论列表以及提示用户评论成功。如果表单验证不通过,就直接返回 `false`。
`resetForm` 方法也接受一个表单名作为参数 `formName`,然后使用 `this.$refs[formName]` 获取到该表单组件的引用,接着调用该表单组件的 `resetFields` 方法重置表单。
submitForm(formName) { this.$refs[formName].validate((valid) => { if (valid) { let param = this.$qs.stringify(this.User); console.log("param = ", param); this.$axios.post('/login', param).then(res => {
这段代码是用来提交表单并进行验证的,首先通过 `this.$refs[formName]` 获取表单的引用,然后通过调用 `validate` 方法进行表单验证。如果验证通过,将表单数据转换为字符串格式并发送 POST 请求到 `/login` 接口,最后处理响应结果。可以看出这个代码片段是用于实现登录功能的。
阅读全文