我获取数据并对其进行分页,没问题。但是,当我尝试过滤数据时,分页不适用于过滤后的数据。仍在底部显示下一页。当我进入(例如)第二页时,第二页中没有数据。因为我已经过滤了。我该如何解决这个问题?谢谢!
索引组件
Data(){
meta_data: {
last_page: null,
current_page: 1,
prev_page_url: null
}
},
methods: {
fetchEstates(page = 1){
axios.get('/ajax', {
params: {
page
}}).then((response) => {
// console.log(response);
this.estates = response.data.data;
this.insertMarkers();
this.meta_data.last_page = response.data.last_page;
this.meta_data.current_page = response.data.current_page;
this.meta_data.prev_page_url = response.data.prev_page_url;
});
},
},
computed: {
one: function () {
let filteredStates = this.estates.filter((estate) => {
return (this.keyword.length === 0 || estate.address.includes(this.keyword)) &&
(this.rooms.length === 0 || this.rooms.includes(estate.rooms)) &&
(this.regions.length === 0 || this.regions.includes(estate.region))});
if(this.sortType == 'price') {
filteredStates = filteredStates.sort((prev, curr) => prev.price - curr.price);
}
if(this.sortType == 'created_at') {
filteredStates = filteredStates.sort((prev, curr) => Date.parse(curr.created_at) - Date.parse(prev.created_at));
}
filteredStates = filteredStates.filter((estate) => { return estate.price <= this.slider.value});
filteredStates = filteredStates.filter((estate) => { return estate.extend <= this.sliderX.value});
filteredStates = filteredStates.filter((estate) => { return estate.m2_price <= this.sliderT.value});
return filteredStates;
},
}
<pagination
:meta_data="meta_data"
v-on:next="fetchEstates">
</pagination>
分页组件
props: ['meta_data'],
methods: {
next(page) {
this.$emit('next', page);
}
}
}
<nav>
<ul class="pagination pagination-lg">
<li class="page-item"
:class="{ 'disabled': meta_data.prev_page_url === null }">
<a href="#"
class="page-link"
@click="next(meta_data.current_page-1)">
«
</a>
</li>
<li class="page-item"
v-for="page in meta_data.last_page"
:key="page"
:class="{ 'active':meta_data.current_page === page }">
<a href="#"
@click.prevent="next(page)"
class="page-link">
{{ page }}
</a>
</li>
<li class="page-item"
:class="{ 'disabled': meta_data.current_page === meta_data.last_page }">
<a href="#"
class="page-link"
@click="next(meta_data.current_page+1)">
»
</a>
</li>
</ul>
</nav>
答案 0 :(得分:0)
您做错了,您应该将数据发送到backend / sql,然后在此处进行过滤。
这样您就可以正确使用last_page
等。
无论如何,如果您仍要按原样对其进行过滤,则需要计算页面agen。
这里是一个示例,因此您可以计算filteredStates
中的页面数并生成页面,您可能已经可以生成页面,但是计算可以为您提供帮助。
Data(){
// you should use data only :) eg data:function() { return meta_data }
// but if this work for you i gusse its fine.
meta_data: {
totalPages: null,
current_page: 1,
pageSize: 20,// how many items exist per page
pagedItems: [], // paged items eg when you click prev or next
filteredData:[], // total items
prevClass: "",
nextClass: "",
pages:[]
}
},
methods: {
// this will init the paginations and display the data
getData: function(){
// totalpages
this.meta_data.totalPages = Math.ceil(this.meta_data.filteredData.length / this.meta_data.pageSize);
// items for the current selected Page
this.meta_data.pagedItems =
this.meta_data.filteredData.slice(this.meta_data.pageSize * (this.meta_data.current_page -1),this.meta_data.pageSize);
if (this.meta_data.current_page == this.meta_data.totalPages
|| this.meta_data.totalPages <=1)
this.meta_data.nextClass = "disabled";
else this.meta_data.nextClass = "";
if (this.meta_data.current_page <=1)
this.meta_data.prevClass = "disabled";
else this.meta_data.prevClass = "";
this.calPages();
},
toPage:function(page){
this.meta_data.current_page = page;
this.getData();
},
next: function(){
if (this.meta_data.totalPages >= this.meta_data.current_page +1){
this.meta_data.current_page++;
this.getData();
}
return false;
},
prev: function(){
if (this.meta_data.current_page -1 >=1 ){
this.meta_data.current_page--;
this.getData();
}
return false;
},
// this will generate [counter] pages each time you select a page.
// I wrote this a long time ago for one of my application
calPages: function(){
if (this.meta_data.totalPages<=0)
return false;
var start = this.meta_data.current_page;
var end = this.meta_data.current_page;
var counter = 3;
//If the page cannot be devised by counter enter the loop
if ((start % counter != 0) && (end % counter != 0)) {
//Get the next nearest page that is divisible by 5
while ((end % counter) != 0) {
end++;
}
//Get the previous nearest page that is divisible by counter
while ((start % counter) != 0) {
start--;
}
}
//The page is divisible by counter so get the next counter pages in the pagination
else {
end += counter;
}
//We are on the first page
if (start == 0) {
start++;
end++;
}
//We are on the last page
if (end == this.meta_data.totalPages || end > this.meta_data.totalPages) {
end = this.meta_data.totalPages ;
}
if (start == this.meta_data.current_page && start > 1)
start--;
while (end - start < counter && end - start > 0)
start--;
if (start <= 0)
start = 1;
while (end - start > counter)
end--;
var r =[];
for (var i = start; i <= end; i++)
r.push({ page:i, selected:(this.meta_data.current_page == i? "selected" : "") });
this.meta_data.pages = r;
}
fetchEstates(page = 1){
axios.get('/ajax', {
params: {
page
}}).then((response) => {
// console.log(response);
this.estates = response.data.data;
this.insertMarkers();
//this.meta_data.last_page = response.data.last_page;
//this.meta_data.current_page = response.data.current_page;
//this.meta_data.prev_page_url = response.data.prev_page_url;
});
},
},
computed: {
// dont see where you are calling this?
one: function () {
let filteredStates = this.estates.filter((estate) => {
return (this.keyword.length === 0 || estate.address.includes(this.keyword)) &&
(this.rooms.length === 0 || this.rooms.includes(estate.rooms)) &&
(this.regions.length === 0 || this.regions.includes(estate.region))});
if(this.sortType == 'price') {
filteredStates = filteredStates.sort((prev, curr) => prev.price - curr.price);
}
if(this.sortType == 'created_at') {
filteredStates = filteredStates.sort((prev, curr) => Date.parse(curr.created_at) - Date.parse(prev.created_at));
}
filteredStates = filteredStates.filter((estate) => { return estate.price <= this.slider.value});
filteredStates = filteredStates.filter((estate) => { return estate.extend <= this.sliderX.value});
filteredStates = filteredStates.filter((estate) => { return estate.m2_price <= this.sliderT.value});
this.meta_data.filteredData = filteredStates;
this. getData()// this will init the paginations and display the data
return filteredStates;
},
}
<nav>
<ul class="pagination pagination-lg">
<li class="page-item"
:class="meta_data.prevClass">
<a href="#"
class="page-link"
v-on:click="prev">
«
</a>
</li>
<li class="page-item"
v-for="page in meta_data.pages" :key="page"
:class="page.selected">
<a href="#"
v-on:click="toPage(page.page)"
class="page-link">
{{ page.page }}
</a>
</li>
<li class="page-item" :class="meta_data.prevClass" v-on:click="next" >
<a href="#"
class="page-link"
@click="next">
»
</a>
</li>
</ul>
</nav>
答案 1 :(得分:0)
您好,我不确定您是否会以最佳方式进行此操作。我最近做了类似的事情。下面是我的简化代码:
HTML:
<div id="app">
<table>
<thead>
<tr>
<th>Index</th>
<th>Item</th>
</tr>
</thead>
<tbody>
<tr v-for="item, index in filterItems" v-if="index >= pagestart && index <= pageend">
<td>{{index}}</td>
<td>{{item}}</td>
</tr>
</tbody>
</table>
<div class="col-lg-12">
<ul class="pagination" style="padding:20px;">
<li><a @click="pagination(pagecurrent - 1)">‹</a></li>
<li v-for="index in pagipages" @click="pagination(index)" :class="{active:index == pagecurrent}"><a>{{index}}</a></li>
<li><a @click="pagination(pagecurrent + 1)">›</a></li>
</ul>
</div>
VUE:
new Vue({
el: '#app',
data () {
return {
items: [],
pagecurrent: 1,
pagestart: 0,
pageend: 25,
itemsperpage: 25,
}
},
methods:{
pagination: function pagination(index) {
//This calculates the range of data to show depending on the selected page
if (index > 0 && index <= this.pagipages) {
this.pagecurrent = index;
this.pagestart = (this.itemsperpage * index) - this.itemsperpage;
this.pageend = (this.itemsperpage * index);
}
},
},
computed: {
filterItems: function filterItems() {
var filter = this.items;
//Do Filtering here
return filter;
},
pagipages: function pagipage() {
//This calculates the amount of pages
return Math.ceil(this.filterItems.length / this.itemsperpage);
}
},
watch: {
//This resets the data for when the filter is changed
filterItems: function() {
this.pagecurrent = 1;
this.pagestart = 0;
this.pageend = this.itemsperpage;
}
}
})