SSM框架学习-SSM整合前后台协议联调

文章详细介绍了如何使用SpringMvcSupport进行静态资源过滤,以及在HTML页面中通过axios进行Ajax请求实现获取(GET)、添加(POST)、修改(PUT)和删除(DELETE)数据的操作。在后端,调整DAO层方法以返回影响行数,确保数据操作的成功性。
摘要由CSDN通过智能技术生成

在这里插入图片描述

1. 列表功能

首先创建一个SpringMvcSupport,设置静态资源过滤;
具体原因参考 静态资源过滤

@Configuration
public class SpringMvcSupport extends WebMvcConfigurationSupport {
    //设置静态资源访问过滤,当前类需要设置为配置类,并被扫描加载
    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        //当访问/pages/????时候,从/pages目录下查找内容
        registry.addResourceHandler("/pages/**").addResourceLocations("/pages/");
        registry.addResourceHandler("/js/**").addResourceLocations("/js/");
        registry.addResourceHandler("/css/**").addResourceLocations("/css/");
        registry.addResourceHandler("/plugins/**").addResourceLocations("/plugins/");
    }
}

然后再HTML页面中写getAll()方法

getAll() {
    //发送ajax请求
    axios.get("/books").then((res)=>{
    this.dataList = res.data.data;
    });
},

2. 添加功能

首先设置添加功能模块可见,并且设置重置表单功能,方便后续添加表单失败时刷新表单

visible.sync="dialogFormVisible"
//弹出添加窗口
handleCreate() {
	this.dialogFormVisible = true;
	this.resetForm();
},
//重置表单
resetForm() {
    this.formData = {};
},

然后做确定按钮的事件,注意添加为post请求,最后要重新请求getAll()方法来显示表单

//添加
handleAdd () {
    //发送ajax请求
    axios.post("/books",this.formData).then((res)
        //如果操作成功,关闭弹层,显示数据
        if(res.data.code == 20011){
            this.dialogFormVisible = false;
            this.$message.success("添加成功");
        }else if(res.data.code == 20010){
            this.$message.error("添加失败");
        }else{
            this.$message.error(res.data.msg);
        }
    }).finally(()=>{
        this.getAll();
    });
},

最后针对表单添加失败,需要修改部分后端代码
dao中的增删改方法需要返回一个影响行数的数值

public interface BookDao {
    @Insert("insert into tbl_book (type,name,description) values(#{type},#{name},#{description})")
    public int save(Book book);

    @Update("update tbl_book set type = #{type}, name = #{name}, description = #{description} where id = #{id}")
    public int update(Book book);

    @Delete("delete from tbl_book where id = #{id}")
    public int delete(Integer id);

    @Select("select * from tbl_book where id = #{id}")
    public Book getById(Integer id);

    @Select("select * from tbl_book")
    public List<Book> getAll();
}

在service层中做对应修改,只有影响行数大于0就操作成功

    public boolean save(Book book) {
        return bookDao.save(book) > 0;
    }

    public boolean update(Book book) {
        return bookDao.update(book) > 0;
    }

    public boolean delete(Integer id) {
        return bookDao.delete(id) > 0;
    }

3. 修改功能

首先要在修改的界面中回显出要修改的信息,为get请求

//弹出编辑窗口
handleUpdate(row) {
    //row.id 查询条件
    //查询数据,根据id查询
    axios.get("/books/"+row.id).then((res)=>{
        if(res.data.code == 20041){
            //展示弹层,加载数据
            this.formData = res.data.data;
            this.dialogFormVisible4Edit = true;
        }else{
            this.$message.error(res.data.msg);
        }
    });
},

然后再进行编辑操作,修改操作为put请求

//编辑
handleEdit() {
    //发送ajax请求
    axios.put("/books",this.formData).then((res)=>{
        //如果操作成功,关闭弹层,显示数据
        if(res.data.code == 20031){
            this.dialogFormVisible4Edit = false;
            this.$message.success("修改成功");
        }else if(res.data.code == 20030){
            this.$message.error("修改失败");
        }else{
            this.$message.error(res.data.msg);
        }
    }).finally(()=>{
        this.getAll();
    });
},

4. 删除操作

// 删除
handleDelete(row) {
    //1.弹出提示框
    this.$confirm("此操作永久删除当前数据,是否继续?","提示",{
        type:'info'
    }).then(()=>{
        //2.做删除业务
        axios.delete("/books/"+row.id).then((res)=>{
            if(res.data.code == 20021){
                this.$message.success("删除成功");
            }else {
                this.$message.error("删除失败");
            }
        }).finally(()=>{
            this.getAll();
        });
    }).catch(()=>{
        //3.取消删除
        this.$message.info("取消删除操作");
    });
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值