vue.js整合vux中的上拉載入下拉重新整理執行個體教程,vue.jsvux

來源:互聯網
上載者:User

vue.js整合vux中的上拉載入下拉重新整理執行個體教程,vue.jsvux

前言

Vux 是基於 Vue 和 Weui 開發的手機端頁面 UI 組件庫,開發初衷是滿足公司的端表單需求,因為第三方的調查問卷表單系統在手機上實在比較醜(還是 PC 那一套樣式適配了大小而已)。於是用 vue 重構了表單組件,後來一發不可收拾把其他常用組件也一併開發了。

相比於 React 還是更喜歡用 Vue ,除了目前社區組件不多,周邊構建工具還是比較完善的(作者也特別勤奮)。

下面話不多說了,來一看看詳細的介紹吧。


建立項目

使用vue-cli 建立一個vue項目

安裝vux,可以參考:vux快速入門

配置

官方文檔地址

開啟後會看到一段話

該組件已經不再維護,也不建議使用,大部分情況下也不需要用到該組件。 建議使用第三方相關組件,相關 issue 將不會處理。

不知道作者為啥不維護了,明明需求挺多的

我沒有用demo裡的 LoadMore 組件,用的是 Scroller裡內建的 use-pullup, use-pulldown 下面是我的配置

<!--  height: 我用到x-header了,文檔裡說header高是48px,所以這裡設定成-48 --><scroller use-pullup :pullup-config="pullupDefaultConfig" @on-pullup-loading="loadMore"  use-pulldown :pulldown-config="pulldownDefaultConfig" @on-pulldown-loading="refresh"  lock-x ref="scrollerBottom" height="-48"></scroller><script> import {Scroller, XHeader} from 'vux' const pulldownDefaultConfig = { content: '下拉重新整理', height: 40, autoRefresh: false, downContent: '下拉重新整理', upContent: '釋放後重新整理', loadingContent: '正在重新整理...', clsPrefix: 'xs-plugin-pulldown-' } const pullupDefaultConfig = { content: '上拉載入更多', pullUpHeight: 60, height: 40, autoRefresh: false, downContent: '釋放後載入', upContent: '上拉載入更多', loadingContent: '載入中...', clsPrefix: 'xs-plugin-pullup-' } export default { components: { XHeader, Scroller }, mounted() { this.$nextTick(() => { this.$refs.scrollerBottom.reset({top: 0}) }) }, data() { return { list: [], pullupDefaultConfig: pullupDefaultConfig, pulldownDefaultConfig: pulldownDefaultConfig } }, methods: { refresh() {  }, loadMore() {  } } }</script>

請求介面遍曆資料

介面服務用的是mock.js產生的資料,可以看一下這篇文章:使用mock.js隨機資料和使用express輸出json介面

安裝 axios

yarn add axios
//... methods: { fetchData(cb) {  axios.get('http://localhost:3000/').then(response => {  this.$nextTick(() => {   this.$refs.scrollerBottom.reset()  })  cb(response.data)  }) } }//...

完善refresh,loadMore方法

//... methods: { refresh() {  this.fetchData(data => {  this.list = data.list  this.$refs.scrollerBottom.enablePullup()  this.$refs.scrollerBottom.donePulldown()  }) }, loadMore() {  this.fetchData(data => {  if (this.list.length >= 10) {   this.$refs.scrollerBottom.disablePullup()  }  this.list = this.list.concat(data.list)  this.$refs.scrollerBottom.donePullup()  }) } }//...

在組件載入的時候調用一下 loadMore 方法

//... mounted() { this.$nextTick(() => {  this.$refs.scrollerBottom.reset({top: 0}) }) this.loadMore() }//...

最後把html部分補全

<scroller> <div style="padding: 10px 0"> <div class="box" v-for="(item, index) in list" :key="index">  <p class="list"></p> </div> </div></scroller>

完整代碼

<template> <div> <x-header :left-options="{'showBack': false}">上拉載入,下拉重新整理</x-header> <scroller use-pullup :pullup-config="pullupDefaultConfig" @on-pullup-loading="loadMore"    use-pulldown :pulldown-config="pulldownDefaultConfig" @on-pulldown-loading="refresh"    lock-x ref="scrollerBottom" height="-48">  <div style="padding: 10px 0">  <div class="box" v-for="(item, index) in list" :key="index">   <p class="list"></p>  </div>  </div> </scroller> </div></template><script> import {Scroller, XHeader} from 'vux' import axios from 'axios' const pulldownDefaultConfig = { content: '下拉重新整理', height: 40, autoRefresh: false, downContent: '下拉重新整理', upContent: '釋放後重新整理', loadingContent: '正在重新整理...', clsPrefix: 'xs-plugin-pulldown-' } const pullupDefaultConfig = { content: '上拉載入更多', pullUpHeight: 60, height: 40, autoRefresh: false, downContent: '釋放後載入', upContent: '上拉載入更多', loadingContent: '載入中...', clsPrefix: 'xs-plugin-pullup-' } export default { components: {  XHeader,  Scroller }, mounted() {  this.$nextTick(() => {  this.$refs.scrollerBottom.reset({top: 0})  })  this.loadMore() }, data() {  return {  list: [],  pullupDefaultConfig: pullupDefaultConfig,  pulldownDefaultConfig: pulldownDefaultConfig  } }, methods: {  fetchData(cb) {  axios.get('http://localhost:3000/').then(response => {   this.$nextTick(() => {   this.$refs.scrollerBottom.reset()   })   cb(response.data)  })  },  refresh() {  this.fetchData(data => {   this.list = data.list   this.$refs.scrollerBottom.enablePullup()   this.$refs.scrollerBottom.donePulldown()  })  },  loadMore() {  this.fetchData(data => {   if (this.list.length >= 10) {   this.$refs.scrollerBottom.disablePullup()   }   this.list = this.list.concat(data.list)   this.$refs.scrollerBottom.donePullup()  })  } } }</script><style lang="less"> .box { padding: 5px 10px 5px 10px; &:first-child {  padding: 0 10px 5px 10px; } &:last-child {  padding: 5px 10px 0 10px; } } .list { background-color: #fff; border-radius: 4px; border: 1px solid #f0f0f0; padding: 30px; } .xs-plugin-pulldown-container { line-height: 40px; } .xs-plugin-pullup-container { line-height: 40px; }</style>

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對幫客之家的支援。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.