1. 程式人生 > 其它 >[原始碼分析] Facebook如何訓練超大模型 --- (2)

[原始碼分析] Facebook如何訓練超大模型 --- (2)

轉自於:https://www.jb51.net/article/211727.htm(親測可用)

這裡需要後端做分頁

1. 使用el-table-infinite-scroll 外掛

(1). 安裝外掛

1 npm install --save el-table-infinite-scroll

(2). 全域性引入並註冊

1 2 3 4 5 // main.js import elTableInfiniteScroll from 'el-table-infinite-scroll'; Vue.use(elTableInfiniteScroll);

(3). 區域性檔案引入

1 2 3 4 5 6 7 8 9 10 <script> // 引入 import elTableInfiniteScroll from 'el-table-infinite-scroll'; export default { // 註冊指令 directives: { 'el-table-infinite-scroll': elTableInfiniteScroll } } </script>

(4). 使用指令

1 2 3 <el-table :height="tableHeight"
v-el-table-infinite-scroll="loadMore"> </el-table>

(5). 程式碼例項

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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 <template> <div class="app-container"> <el-table :height="tableHeight" v-el-table-infinite-scroll="loadMore" :data="tableList"> <!-- 表格資料省略 --> </el-table> </div> </template> <script> // 引入外掛 import elTableInfiniteScroll from "el-table-infinite-scroll"; export default { name: "index", data() { return { // 表格高度 tableHeight:"", // 資料總數 tableCount:0, // 表格資料列表 tableList:[], // 是否載入中 tableLoading:false, // 表格搜尋條件 tableSearch:{ page:1 } } }, // 註冊指令 directives: { "el-table-infinite-scroll": elTableInfiniteScroll, }, created() { let windowHeight =document.documentElement.clientHeight || document.body.clientHeight; // 動態計算表格的高度,200為螢幕內除了表格以外其他元素的高度,依實際情況而定 this.tableHeight = windowHeight - 200 + "px"; }, mounted(){ this.getTableData(this.tableSearch); }, methods: { // 請求表格資料 getTableData(search) { let page = search.page; let url = "index?page=" + page; // 首次開啟頁面要載入一次資料,為了防止資料過多自動觸發滾動,此處需要置為載入中 this.tableLoading = true; this.$http.get(url).then((result) => { if (res.code == 10000) { // 拼接資料 this.tableList = this.tableList.concat(result.data.list); this.tableCount = result.count; this.tableSearch.page = result.current; this.tableLoading = false; } }); }, // 載入更多 loadMore() { if (!this.tableLoading) { this.tableLoading = true; if (this.tableList.length < this.tableCount) { this.tableSearch.page++; this.getTableData(this.tableSearch); } else { this.$message("已載入完所有的資料!"); this.tableLoading = false; } } }, } }; </script>

2. 自定義下拉載入方法

上面使用的外掛需要依賴Element-UI,如果沒有使用Element-UI,那就只能自己寫一個下拉載入了,實現程式碼如下:

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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 <template> <div class="app-container"> <div :style="{height:tableHeight,overflow:'auto'}" id="tableBox"> <!-- 表格資料省略 --> </div> </div> </template> <script> export default { name: "index", data() { return { // 表格高度 tableHeight:"", // 資料總數 tableCount:0, // 表格資料列表 tableList:[], // 是否載入中 tableLoading:false, // 表格搜尋條件 tableSearch:{ page:1 } }; }, created(){ let windowHeight = document.documentElement.clientHeight || document.body.clientHeight; // 動態計算表格的高度,200為螢幕內除了表格以外其他元素的高度,依實際情況而定 this.tableHeight = windowHeight - 200 +'px'; }, mounted() { this.getTableData(this.tableSearch); document.getElementById("tableBox").addEventListener('scroll',this.onTableScroll); }, beforeDestroy() { // 移除監聽事件 window.removeEventListener('scroll', this.onTableScroll) }, methods: { onTableScroll(){ var obj = document.getElementById("tableBox"); var scrollHeight = obj.scrollHeight; var scrollTop = obj.scrollTop; var objHeight = obj.offsetHeight; // 100為閾值,可根據實際情況調整 if(scrollHeight <= (scrollTop + objHeight + 100) && !this.tableLoading && this.tableList.length<this.tableCount){ this.tableLoading = true; this.tableSearch.page++; setTimeout(()=>{ this.getTableData(this.tableSearch); },300) } }, getTableData(search){ let page = search.page; let url = "index?page=" + page; // 首次開啟頁面要載入一次資料,為了防止資料過多自動觸發滾動,此處需要置為載入中 this.tableLoading = true; this.$http.get(url).then((result) => { if (res.code == 10000) { // 拼接資料 this.tableList = this.tableList.concat(result.data.list); this.tableCount = result.count; this.tableSearch.page = result.current; this.tableLoading = false; } }); }, }, }; </script>