zoukankan      html  css  js  c++  java
  • mp service层 增删改查

    后端:
    //添加章节
    @PostMapping("addChapter")
    public R addChapter(@RequestBody EduChapter eduChapter) {
    chapterService.save(eduChapter);
    return R.ok();
    }

    //根据章节id查询
    @GetMapping("getChapterInfo/{chapterId}")
    public R getChapterInfo(@PathVariable String chapterId) {
    EduChapter eduChapter = chapterService.getById(chapterId);
    return R.ok().data("chapter",eduChapter);

    }

    //修改章节
    @PostMapping("updateChapter")
    public R updateChapter(@RequestBody EduChapter eduChapter) {
    chapterService.updateById(eduChapter);
    return R.ok();
    }

    //删除的方法
    @DeleteMapping("{chapterId}")
    public R deleteChapter(@PathVariable String chapterId) {
    chapterService.removeById(chapterId);
    return R.ok();
    }

    前端使用:
    //添加章节
        addChapter(chapter) {
            return request({
                url: '/eduservice/chapter/addChapter',
                method: 'post',
                data:chapter
            })
        },
        //根据id查询章节
        getChapter(courseId) {
            return request({
                url: '/eduservice/chapter/getChapterInfo/'+courseId,
                method: 'get'
            })
        },
        //修改章节
        updateChapter(chapter) {
            return request({
                url: '/eduservice/chapter/updateChapter',
                method: 'post',
                data: 'chapter'
            })
        },
        //删除章节
        deleteChapter(chapterId) {
            return request({
                url: '/eduservice/chapter/'+chapterId,
                method: 'delete'
            })
        } 
  • 相关阅读:
    BZOJ 3611: [Heoi2014]大工程 [虚树 DP]
    BZOJ 3991: [SDOI2015]寻宝游戏 [虚树 树链的并 set]
    BZOJ 2286: [Sdoi2011消耗战 [DP 虚树]
    BZOJ 4767: 两双手 [DP 组合数]
    BZOJ 1426: 收集邮票 [DP 期望 平方]
    转「服务器运维」如何解决服务器I/O过高的问题
    iostat查看linux硬盘IO性能
    Linux前台、后台、挂起、退出、查看命令汇总
    Linux虚拟内存的作用
    -bash: iostat: command not found解决办法
  • 原文地址:https://www.cnblogs.com/zjazn/p/14451851.html
Copyright © 2011-2022 走看看