SPA项目开发之CRUD+表单验证

 表单验证
Form组件提供了表单验证的功能,只需要通过 rules 属性传入约定的验证规则,
并将Form-Item的prop属性设置为需校验的字段名即可

<el-form-item label="活动名称" prop="name">
   <el-form :model="ruleForm" :rules="rules" ref="ruleForm"  

代码:

<template>
  <div>
    <el-form :inline="true" :model="formInline" class="user-search">
      <el-form-item label="搜索:">
        <el-input size="small" v-model="formInline.title" placeholder="输入文章标题"></el-input>
      </el-form-item>
      <el-form-item>
        <el-button size="small" type="primary" icon="el-icon-search" @click="search">搜索</el-button>
        <el-button size="small" type="primary" icon="el-icon-plus" @click="add()">添加</el-button>
      </el-form-item>
    </el-form>
    <!-- 列表-->
    <el-table :data="listData" stripe style="width: 100%">
      <el-table-column prop="id" label="ID" width="390">
      </el-table-column>
      <el-table-column prop="title" label="文章标题" width="390">
      </el-table-column>
      <el-table-column prop="body" label="文章内容" width="390">
      </el-table-column>
      <el-table-column align="center" label="操作" min-width="300">
        <template slot-scope="scope">
          <el-button size="mini" @click="edit(scope.$index, scope.row)">编辑</el-button>
          <el-button size="mini" type="danger" @click="del(scope.$index, scope.row)">删除</el-button>
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页条 -->
    <el-pagination style="margin-top: 20px;" @size-change="handleSizeChange" @current-change="handleCurrentChange"
      :current-page="formInline.page" :page-sizes="[10, 20, 30, 50]" :page-size="formInline.rows" layout="total, sizes, prev, pager, next, jumper"
      :total="pageBean.total">
    </el-pagination>
    <!-- 编辑界面 -->
    <el-dialog :title="title" :visible.sync="editFormVisible" width="30%" @click="closeDialog">
      <el-form label-width="120px" :model="editForm" :rules="rules" ref="editForm">
        <el-form-item label="文章标题" prop="title">
          <el-input size="small" v-model="editForm.title" auto-complete="off" placeholder="请输入文章标题"></el-input>
        </el-form-item>
        <el-form-item label="文章内容" prop="body">
          <el-input size="small" v-model="editForm.body" auto-complete="off" placeholder="请输入文章内容"></el-input>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button size="small" @click="closeDialog">取消</el-button>
        <el-button size="small" type="primary" class="title" @click="submitForm">保存</el-button>
      </div>
    </el-dialog>
  </div>
</template>

<script>
  export default {
    data() {
      return {
        listData: [],
        pageBean: {
          total: 0
        },
        formInline: {
          title: ‘‘,
          page: 1,
          rows: 10,
          total: 0
        },
        editFormVisible: false,
        title: ‘‘,
        editForm: {
          body: ‘‘,
          title: ‘‘,
          id: 0
        },
        rules: {
          title: [{
            required: true,
            message: ‘请输入文章标题‘,
            trigger: ‘blur‘
          }],
          body: [{
              required: true,
              message: ‘请输入文章内容‘,
              trigger: ‘blur‘
            },
            {
              min: 3,
              max: 5,
              message: ‘长度在 3 到 5 个字符‘,
              trigger: ‘blur‘
            }
          ]
        }
      };
    },
    methods: {
      search() {
        this.doSearch(this.formInline);
      },
      doSearch(params) {
        let url = this.axios.urls.SYSTEM_ARTICLE_LIST;
        this.axios.post(url, params).then((response) => {
          console.log(response);
          this.listData = response.data.result;
          this.pageBean = response.data.pageBean;
        }).catch((response) => {
          console.log(response);

        });
      },
      handleSizeChange(rows) {
        console.log(‘页码大小发生改变‘ + rows);
        this.formInline.page = 1;
        this.formInline.rows = rows;
        this.search();
      },
      handleCurrentChange(page) {
        console.log(‘当前页码发生改变‘ + page);
        this.formInline.page = page;
        this.search();
      },
      /* 关闭新增编辑界面*/
      closeDialog() {
        this.editFormVisible = false;
        this.clearFrom();
      },
      /* 提交新增,修改*/
      submitForm() {
        //用来提交新增,修改的表单数据的,提交之前需要通过Vue实列中定义的表单填写规则
        this.$refs[‘editForm‘].validate((valid) => {
          if (valid) {
            let url;
            if (this.editForm.id == 0) {
              url = this.axios.urls.SYSTEM_ARTICLE_ADD;
              this.$message({
                message: ‘新增成功‘,
                type: ‘success‘
              });
            } else {
              url = this.axios.urls.SYSTEM_ARTICLE_EDIT;
              this.$message({
                message: ‘编辑成功‘,
                type: ‘success‘
              });
            }
            this.axios.post(url,
              this.editForm
            ).then((response) => {
              console.log(response);
              this.clearFrom();
              this.doSearch(this.formInline);
            }).catch((response) => {
              console.log(response);
            });

          } else {
            console.log(‘error submit!!‘);
            return false;
          }
        });
      },
      /* 清空表格*/
      clearFrom() {
        this.editForm.id = ‘‘;
        this.editForm.title = ‘‘;
        this.editForm.body = ‘‘;
        this.formInline.page = 1;
        this.formInline.rows = 10;
        this.editFormVisible = false;
      },
      /* 新增文章*/
      add() {
        this.title = ‘新增文章‘;
        this.editFormVisible = true;
      },
      /*删除文章 */
      del(index, row) {
        this.$confirm(‘此操作将永久删除该文件, 是否继续?‘, ‘提示‘, {
          confirmButtonText: ‘确定‘,
          cancelButtonText: ‘取消‘,
          type: ‘warning‘
        }).then(() => {
          let url = this.axios.urls.SYSTEM_ARTICLE_DEL;
          this.axios.post(url, {
            id: row.id
          }).then((response) => {
            console.log(response);
            this.clearFrom();
            this.doSearch({});
          }).catch((response) => {
            console.log(response);
          });
          this.$message({
            type: ‘success‘,
            message: ‘删除成功!‘
          });
        }).catch(() => {
          this.$message({
            type: ‘info‘,
            message: ‘已取消删除‘
          });
        });

      },
      /* 编辑文章*/
      edit(index, row) {
        this.title = ‘编辑文章‘;
        //index代表的是操作数据在当前界面的行号
        //row代表操作当前数据,也就是说可以重row中获取所有数据库列段名
        //var row = $("#dd").datagrid("getselected");
        //$("#ff").form("load",row);完成了数据回显
        this.editForm.id = row.id;
        this.editForm.title = row.title;
        this.editForm.body = row.body;
        this.editFormVisible = true;
      }

    },
    created() {
      this.doSearch({});
    }
  }
</script>

<style>
</style>

  展示:

原文地址:https://www.cnblogs.com/chenjiahao9527/p/11353876.html

时间: 2024-10-09 03:06:32

SPA项目开发之CRUD+表单验证的相关文章

关于Web项目里的给表单验证控件添加结束时间不得小于开始时间的验证方法,日期转换和前台显示格式之间,还有JSON取日期数据格式转换成标准日期格式的问题

项目里有些不同页面间的日期显示格式是不同的, 第一个问题: 比如我用日期控件WdatePicker.js导包后只需在input标签里加上onClick="WdatePicker()"就可以用了,但是默认是没有时分秒的,如果需要显示时分秒只需要加上WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})就行. **************************************************************************

SPA项目开发之tab页实现

实现思路及细节 1.利用前面博客所讲的Vuex的知识:定义几个变量 Options:存放tab页对象的容器(主要是路由路径以及tab页的名字) activeIndex:被激活的tab页路由路径 showName:tab页的标题 Role:用来区分是否是因为左侧菜单被点击造成的路由路径发生改变: 是:pass:不是:nopass 2.左侧导航菜单绑定点击事件 将被点击的菜单名称存放到Vuex中,供路由路径变化监听时,tab页标题显示: 标记一下role为pass,到时新增tab页的时候需要作为判断

JS表单验证-12个常用的JS表单验证

最近有个项目用到了表单验证,小编在项目完结后的这段时间把常用的JS表单验证demo整理了一下,和大家一起分享~~~ 1. 长度限制 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> 6

JaveWeb 公司项目(4)----- Easyui的表单验证

前面三篇博文讲述的是界面的搭建和数据的传输,可以看出目前我做的这个小项目已经有了一个大体的雏形,剩下的就是细节部分的打磨和一些友好的人机交互设计,今天做的是表单的验证,作为初学者,着实花了一番功夫,所以写一篇博文将这个过程记录下来,一方面是可以记录自己的工作过程,以后看起来方便,一方面也希望可以帮助到有需要求的人 Easyui有一个专门为表单验证设计的样式,首先我们将Form表中的Textbox模式改为Validatebox,更改之后输入框会有一些变化,从圆润变得相对方正一些,

测开之路一百四十八:WTForms表单验证

使用WTForms表单验证,可以在数据建模时就设置验证信息和错误提示 创建模型时,设置验证内容,如必填.格式.长度 from flask_wtf import Formfrom wtforms import StringField, PasswordField, BooleanFieldfrom wtforms import validators class UserRegForm(Form): username = StringField('用户名', [validators.DataRequ

jQuery学习之:Validation表单验证插件

http://polaris.blog.51cto.com/1146394/258781/ 最近由于公司决定使用AJAX + Struts2来重构项目,让我仔细研究一下这两个,然后集中给同事讲讲,让每个人都能够有所掌握,慢慢会用.于是,自己便开始学习…… 由于Struts2自己早就学过,因而不需要花多少时间.而AJAX之前没怎么用过.现在AJAX框架如此之多,选择哪一个呢?开始打算选择 dojo,但是看了一点后,发现蛮复杂的.在之前有学过一点点jQuery,而网上也说jQuery很强大而且很容易

走进AngularJs 表单及表单验证

年底了越来越懒散,AngularJs的学习落了一段时间,博客最近也没更新.惭愧~前段时间有试了一下用yeoman构建Angular项目,感觉学的差不多了想做个项目练练手,谁知遇到了一系列问题.yeoman是基于node.js的一套工具包,由于我一直在windows下编程,而且node.js对于windows环境的支持也在慢慢加强,所以想尝试在windows下用yeoman跟搭建一个项目.过程远比想象的坎坷多了,各种报错,各种搜资料解决问题,最终还是无法解决一些编译出错,以失败告终,转战Linux

js表单验证 插件jQuery-Validation-Engine-master

做项目基本离不开表单验证,想要美观,简洁,不占内存,用户体验效果好 所以我推荐一款js表单验证 因为我觉得这个挺好的,所以分享下 文档 下面也有下载的压缩包 https://github.com/posabsolute/jQuery-Validation-Engine 昵称做了ajax验证判断输入的用户是否存在 会提示先等待的信息...(我这里设置的时候是2秒) 如果用户名存在 会显示红色的气泡 如果用户名可以使用 会显示绿色的汽泡 还可以改变消息框的位置 如果弹出多个消息框 可以从上到下逐个提

Laravel教程 七:表单验证 Validation

Laravel教程 七:表单验证 Validation 此文章为原创文章,未经同意,禁止转载. Laravel Form 终于要更新这个Laravel系列教程的第七篇了,期间去写了一点其他的东西. 就不 说废话了吧,直接进入Form Validation的部分吧.几乎在每一个web应用当中都会有表单,而有表单基本就离不开表单验证.在laravel中,其实可以说是有两种方式来进行表单验证:使用Request和使用Validation.下面将分开讲这两部分的内容,而且我会更着重第一种,也更推荐大家使