当前位置:   article > 正文

项目整合-后端:Mybatis Plus分页Page total始终为0_{"code":200,"total":0,"rows":[]}

{"code":200,"total":0,"rows":[]}

看一下我们api文档:

{
  "code": 200,
  "message": "成功",
  "data": {
    "records": [
      {
        "id": 1,
        "createTime": "2021-08-17 08:51:22",
        "updateTime": "2021-08-17 08:52:11",
        "isDeleted": 0,
        "param": {},
        "hosname": "北京国际医院",
        "hoscode": "1000_2",
        "apiUrl": "http://localhost:9999",
        "signKey": "674c4137707728439a6510eae12deea9",
        "contactsName": "万物",
        "contactsPhone": "12888888888",
        "status": 0
      },
      {
        "id": 2,
        "createTime": "2021-08-17 08:50:19",
        "updateTime": "2021-08-17 08:51:58",
        "isDeleted": 0,
        "param": {},
        "hosname": "北京妇科医院",
        "hoscode": "1000_3",
        "apiUrl": "1",
        "signKey": "674c4137707728439a6510eae12deea9",
        "contactsName": "李四",
        "contactsPhone": "13888888888",
        "status": 1
      }
    ],
    "total": 0,
    "size": 2,
    "current": 1,
    "orders": [],
    "optimizeCountSql": true,
    "hitCount": false,
    "countId": null,
    "maxLimit": null,
    "searchCount": true,
    "pages": 2
  },
  "ok": true
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47

原因:
旧版分页插件添加
我们可以看到上面的分页插件功能已经弃用了,使用新版:

// 最新版
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.H2));
        return interceptor;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

结果:
在这里插入图片描述
大爷们,走之前,给个赞呗

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/993841
推荐阅读
相关标签
  

闽ICP备14008679号