課程
/后端開(kāi)發(fā)
/Java
/MyBatis-Plus + SpringBoot實(shí)現(xiàn)簡(jiǎn)單權(quán)限管理
這里為啥沒(méi)有頁(yè)碼?
2021-05-14
源自:MyBatis-Plus + SpringBoot實(shí)現(xiàn)簡(jiǎn)單權(quán)限管理 6-3
正在回答
回復(fù) 老猿:我在網(wǎng)上查了一下,說(shuō)是沒(méi)有添加分頁(yè)插件,加上這段代碼就好了,但是好奇怪啊,視頻里老師也沒(méi)有寫這個(gè)啊
@Configuration public?class?MybatisPlusConfig?{ ????//?最新版 ???@Bean ????public?MybatisPlusInterceptor?mybatisPlusInterceptor()?{ ????????MybatisPlusInterceptor?interceptor?=?new?MybatisPlusInterceptor(); ????????interceptor.addInnerInterceptor(new?PaginationInnerInterceptor(DbType.MYSQL)); ????????return?interceptor; ????} }
老猿
莫南爵
老猿 回復(fù) 莫南爵
莫南爵 回復(fù) 老猿
hawk_1984
渲染表格的table.render中,添加page: true這個(gè)參數(shù)了嗎?
我也是,加了,但是頁(yè)面沒(méi)有頁(yè)碼
var?tableIns?=?table.render({ ????elem:?'#customerList',?//?table的id ????url:?'/customer/list',?//?數(shù)據(jù)接口 ????page:?true,??//開(kāi)啟分頁(yè) ????parseData:?function?(res)?{?//res?即為原始返回的數(shù)據(jù) ????????return?{ ????????????"code":?res.code,?//解析接口狀態(tài) ????????????"msg":?res.msg,?//解析提示文本 ????????????"count":?res.data.count,?//解析數(shù)據(jù)長(zhǎng)度 ????????????"data":?res.data.records?//解析數(shù)據(jù)列表 ????????}; ????}, ????cols:?[[//表頭 ????????{field:?'realName',?title:?'真實(shí)姓名'}, ????????{field:?'sex',?title:?'性別'}, ????????{field:?'age',?title:?'年齡'}, ????????{field:?'phone',?title:?'手機(jī)號(hào)碼'}, ????????{field:?'createTime',?title:?'創(chuàng)建時(shí)間'}, ????????{title:?'操作',?toolbar:?'#barDemo'} ????]] });
qq_慕田峪5401704 提問(wèn)者 回復(fù) 老猿
舉報(bào)
通過(guò)實(shí)戰(zhàn)項(xiàng)目掌握MyBatis-Plus應(yīng)用!
4 回答layui table 內(nèi)容顯示不出來(lái)是哪里有問(wèn)題呢?
1 回答layui分頁(yè)工具超過(guò)10條數(shù)據(jù),就沒(méi)法顯示了??
2 回答提問(wèn)個(gè)問(wèn)題?
2 回答sql問(wèn)題
1 回答js路徑問(wèn)題
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2021-05-15
回復(fù) 老猿:我在網(wǎng)上查了一下,說(shuō)是沒(méi)有添加分頁(yè)插件,加上這段代碼就好了,但是好奇怪啊,視頻里老師也沒(méi)有寫這個(gè)啊
2021-05-14
渲染表格的table.render中,添加page: true這個(gè)參數(shù)了嗎?
2021-05-14
我也是,加了,但是頁(yè)面沒(méi)有頁(yè)碼