SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记 demo4_mybatis_Example

Posted dlage

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记 demo4_mybatis_Example相关的知识,希望对你有一定的参考价值。

SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记
前端将参数传到后台。

这里接收参数可以不加修饰的@,参数会自动绑定到同名的属性上。这里也可以使用对象。前端传来的参数可以自定绑定到对象的属性里面。要保证名字一样。

@GetMapping("/ebookLike")
public CommonResp ebookLikeList(String name) 
    CommonResp<List<Ebook>> resp = new CommonResp<>();
    List<Ebook> ebookList = ebookService.listLike(name);
    resp.setContent(ebookList);
    return resp;

创建EbookExample类来使用条件

public List<Ebook> listLike(String name) 
    // 下面两行时条件查询的固定表达式。
    EbookExample ebookExample = new EbookExample();
    EbookExample.Criteria criteria = ebookExample.createCriteria();
    criteria.andNameLike("%" + name + "%");
    return ebookMapper.selectByExample(ebookExample);

以上是关于SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记 demo4_mybatis_Example的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记 demo4_mybatis_Example

SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记 demo4_mybatis_Example

SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记 demo1_mybatis_generator

SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记 demo1_mybatis_generator

SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记 demo6_vue

SpringBoot知识体系+Vue3 实战WIKI知识库系统笔记 demo6_vue