以前一直想要本身试着实现一个分页器,可是一直拖,今天写完,大概照着网易云音乐的样子来完成。这个小例子很简单,经过这个小例子,能够学习到Vue计算属性的使用,并了解到写分页器须要区分的状况。这篇文章会慢慢从头来实现这个小例子,相信你必定会学会,并且看完了个人思路以后说不定会有更棒的思路和想法!bash
实现的效果是这样子的:函数
<template>
<div class="pageContainer">
<ul class="pagesInner">
<li class="page"><span class="fa fa-chevron-left" aria-hidden="true"></span></li>
<li class="page" v-for="(item, index) in pages" :key="index">
<span>{{item}}</span>
</li>
<li class="page"><span class="fa fa-chevron-right" aria-hidden="true"></span></li>
</ul>
</div>
</template>
<script>
export default {
computed: {
pages() {
return 10;
}
}
};
</script>
复制代码
效果以下:布局
有两个地方说下:学习
这篇文章的例子是参照了网易云音乐里的分页方法,网易的图:ui
它有几个特色:this
分页的三种状况:spa
如图:3d
这种状况首页尾页保留,倒数第二个页面为..., 页码从头日后算code
如图:cdn
首页和尾页依然保留,第二个页码为...,页码从最后向前算
如图:
首页和尾页都保留,第二个页码和倒数第二个页码都为 ... ,同时页面从当前页码位置向两侧算
从上面的思路来看,页码具体如何呈现由当前页码的位置决定,因此咱们要在data里设置一个currentPage:1,而计算属性里用于渲染页码的pages经过currentPage来控制,同时还须要一个总页数totalPages:50。
先写第一种状况:
<script>
export default {
data() {
return {
currentPage: 1,
totalPages: 50
}
},
computed: {
pages() {
const c = this.currentPage
const t = this.totalPages
if (c <= 5) {
return [1, 2, 3, 4, 5, 6, 7, 8, 9, '...', t]
}
}
}
};
</script>
复制代码
效果以下:
写第二种状况,再加个if:
<script>
export default {
data() {
return {
currentPage: 47,
totalPages: 50
}
},
computed: {
pages() {
const c = this.currentPage
const t = this.totalPages
if (c <= 5) {
return [1, 2, 3, 4, 5, 6, 7, 8, 9, '...', t]
} else if (c >= t - 4) {
return [1, '...', t-8, t-7, t-6, t-5, t-4, t-3, t-2, t-1, t]
}
}
}
};
</script>
复制代码
把currentPage的值设为>= 46,效果以下:
把第三种状况加上:
computed: {
pages() {
const c = this.currentPage
const t = this.totalPages
if (c <= 5) {
return [1, 2, 3, 4, 5, 6, 7, 8, 9, '...', t] //第一种状况
} else if (c >= t - 4) {
return [1, '...', t-8, t-7, t-6, t-5, t-4, t-3, t-2, t-1, t] //第二种状况
} else {
return [1, '...', c-3, c-2, c-1, c, c+1, c+2, c+3, '...', t] //第三种状况
}
}
}
复制代码
基本就是这样,已经能够经过改变currentPage的值查看分页器的变化了。
接下来实现点击相应的页码来改变currentPage的值,只要写一个点击事件再写一个函数就行了。
<li class="page"
v-for="(item, index) in pages"
:key="index"
:class="{actived: item === currentPage}" // 给点击到的当前页码添加样式
@click="select(item)" // 添加一个点击事件
>
...
methods: {
select(item) {
this.currentPage = item
}
}
...
actived: {
border-color: #2d8cf0;
background-color: #2d8cf0;
color: #fff;
}
复制代码
效果以下:
为了让当前页码更清楚,再在页面上加上当前多少页
<div>当前第{{currentPage}}页</div>
复制代码
效果以下:
发现了一bug,就是咱们每次点击的时候,都是将item的具体内容传递过去改变currentIPage的,可是当咱们点的 ... 的时候就把它也传递过去了,可是它不是咱们要的页码的数据,在计算的时候就出错了,因此咱们须要作一点处理。同时,还有再点击当前页码的时候也没必要再执行select函数了。
简单改写一下select函数:
select(n) {
if (n === this.currentPage) return
if (typeof n === 'string') return
this.currentPage = n
}
复制代码
这样就正常了。
再把两侧icon向前一页和向后一页的功能加上,由于一个是加1一个是减1,因此写一个函数传递不一样的参数就好了。
<li class="page" @click="prevOrNext(-1)"><span class="fa fa-chevron-left" aria-hidden="true"></span></li>
...
<li class="page" @click="prevOrNext(1)"><span class="fa fa-chevron-right" aria-hidden="true"></span></li>
...
prevOrNext(n) {
this.currentPage += n
}
复制代码
效果以下:
呃,边界问题,当currentPage为1时就不能再减了,当它为最大时也不能再加了。
改写一下代码:
prevOrNext (n) {
this.currentPage += n
this.currentPage < 1
? this.currentPage = 1
: this.currentPage > this.totalPages
? this.currentPage = this.totalPages
: null
}
复制代码
这下就能够了,如图:
写到这里,这个分页器基本功能就写完了,固然,咱们还能够继续封装,在每次改变currentPage的时候用this.$emit
通知外面实现通讯,还能够经过props
来向内传递数据,好比传递totalPages等,这些都是能够继续完善的内容。最重要的一点,关于分页器的具体计算方法,我用的是最笨的方法,因此同志们要是知道更好的办法记得留言啊~
这是我在掘金上的第五篇文章,感谢您的观看!