什么是落后于谷歌的分页行为逻辑?
我的分页程序基本是这样的:
[1] 2 3 ... 184 >
< 1 [2] 3 4 ... 184 >
< 1 2 [3] 4 5 ... 184 >
< 1 2 3 [4] 5 6 ... 184 >
< 1 ... 3 4 [5] 6 7 ... 184 >
< 1 ... 4 5 [6] 7 8 ... 184 >
< 1 ... 5 6 [7] 8 9 ... 184 >
< 1 ... 6 7 [8] 9 10 ... 184 >
这里是上面的例子中的一个活版本: http://www.dev.thomaskile.me/?page=test-zone&module=Paginator 。
我知道为什么发生这种情况; 我已经设置到被显示在当前页的每一侧,以两(2)的页编号的量。
我宁愿有号码的范围等于这样的:
[1] 2 3 4 5 6 7 8 ... 184 >
< 1 [2] 3 4 5 6 7 ... 184 >
< 1 2 [3] 4 5 6 7 ... 184 >
< 1 2 3 [4] 5 6 7 ... 184 >
< 1 ... 3 4 [5] 6 7 ... 184 >
< 1 ... 4 5 [6] 7 8 ... 184 >
< 1 ... 5 6 [7] 8 9 ... 184 >
< 1 ... 6 7 [8] 9 10 ... 184 >
这是一开始,我需要做出一些改变结束,但无法弄清楚如何使一个简单的操作...
我想,使其灵活的为好。 这意味着我想能够改变每侧通缉页面的数量,并有剧本扩大和计算这一切......
这是我到目前为止的代码:
/**
* page controller buttons
* @param str $this->querySting href="URL string"
* @param str $this->pageIdentifier $_GET['this-name']
* @param int $this->numPages Total amount of pages
* @param int $this->midRange Number of pages to show on each side of current page
*/
public function prevPage()
{
if ($this->currentPage > 1){
$prevPage = ($this->currentPage - 1);
return '<a href="'.$this->queryString.'&'.$this->pageIdentifier.'='.$prevPage.'" class="prev">prev</a>';
}
}
public function nextPage()
{
if ($this->currentPage < $this->numPages) {
$nextPage = $this->currentPage + 1;
return '<a href="'.$this->queryString.'&'.$this->pageIdentifier.'='.$nextPage.'" class="next">next</a>';
}
}
public function firstPage()
{
if ($this->currentPage > ($this->midRange + 1)) { // if number of pages between "currentPage" and "firstPage" exceeds $midRange with 1...
$firstPage .= '<a href="'.$this->queryString.'&'.$this->pageIdentifier.'=1" class="first">1</a>'; // ...show "first page"-link
if ($this->currentPage > ($this->midRange + 2)) { // if number of pages between $currentPage and "first page" exceeds $midRange with more than 1
$firstPage .= '…'; // add "..." between "1st page"-link and first page in $range
}
}
return $firstPage;
}
public function lastPage()
{
if ($this->currentPage < ($this->numPages - $this->midRange)) { // if number of pages between "currentPage" and "last page" is equal to $midRange
if (($this->currentPage < ($this->numPages - $this->midRange) - 1)) { // if number of pages between $currentPage and "last page" exceeds $range with more than two
$lastPage .= '…'; // add "..." between "last page"-link and last page in $range
}
$lastPage .= '<a href="'.$this->queryString.'&'.$this->pageIdentifier.'='.$this->numPages.'" class="last">'.$this->numPages.'</a>'; // show "last page"-link
}
return $lastPage;
}
# Range of pages between (prev first ...) and (... last next)
public function listPages()
{
for ($i = ($this->currentPage - $this->midRange); $i < (($this->currentPage + $this->midRange) + 1); $i++){
if (($i > 0) && ($i <= $this->numPages)) // if page number are within page range
{
if ($i == $this->currentPage) { $listPages .= '<a class="current">'.$i.'</a>'; } // if we're on current page
else { $listPages .= '<a href="'.$this->queryString.'&'.$this->pageIdentifier.'='.$i.'">'.$i.'</a>'; } // if not current page
}
}
return $listPages;
}
Answer 1:
这是我为我的分页做。
$startPage = $currentPage - 4;
$endPage = $currentPage + 4;
if ($startPage <= 0) {
$endPage -= ($startPage - 1);
$startPage = 1;
}
if ($endPage > $totalPage)
$endPage = $totalPage;
if ($startPage > 1) echo " First ... ";
for($i=$startPage; $i<=$endPage; $i++) echo " {$i} ";
if ($endPage < $totalPage) echo " ... Last ";
我相信我的代码是自我解释,但我会尽量解释它用简单的英语。 首先,你需要知道两件事情之前,你可以生成分页:$总页数和$当前页 。
步骤1:假设当前页面处于中档。 $起始页和$ ENDPAGE店范围的分页尝试生成页面。
第2步 :如果$起始页是否定的,那么你需要化妆为$ ENDPAGE。
步骤3:如果$ ENDPAGE过剩$总页数 ,然后$ ENDPAGE是最后一页。
第4步 :生成分页到HTML中。 (它是由你如何您希望您的分页的样子。我会简单地使用纯文本来表示我的分页)
if ($startPage > 1) echo " First ... ";
for($i=$startPage; $i<=$endPage; $i++) echo " {$i} ";
if ($endPage < $totalPage) echo " ... Last ";
修正的缺陷,以我以前的逻辑
$startPage = ($curPage < 5)? 1 : $curPage - 4;
$endPage = 8 + $startPage;
$endPage = ($totalPage < $endPage) ? $totalPage : $endPage;
$diff = $startPage - $endPage + 8;
$startPage -= ($startPage - $diff > 0) ? $diff : 0;
if ($startPage > 1) echo " First ... ";
for($i=$startPage; $i<=$endPage; $i++) echo " {$i} ";
if ($endPage < $totalPage) echo " ... Last ";
Answer 2:
这次谈话是一个很好的开始,我! 但我想一个分页程序更接近原来的问题,即用心:
1)可被包含在一个函数的变量,以改变总页数,当前页面,以及对当前的每一侧页数显示。
2)保持恒定的宽度,类似于原始柱:
< [1] 2 3 4 5 6 7 ... 99 >
< 1 [2] 3 4 5 6 7 ... 99 >
< 1 2 [3] 4 5 6 7 ... 99 >
< 1 2 3 [4] 5 6 7 ... 99 >
< 1 2 3 4 [5] 6 7 ... 99 >
< 1 ... 4 5 [6] 7 8 ... 99 >
< 1 ... 5 6 [7] 8 9 ... 99 >
< 1 ... 92 93 [94] 95 96 ... 99 >
< 1 ... 93 94 [95] 96 97 98 99 >
< 1 ... 93 94 95 [96] 97 98 99 >
< 1 ... 93 94 95 96 [97] 98 99 >
< 1 ... 93 94 95 96 97 [98] 99 >
< 1 ... 93 94 95 96 97 98 [99] >
3)继续的情况下,显示数字“2”,而不是“...”,你将有1 ... 3
4)结束同样的事情。
因此,这里就是我所做的。 我编码在不同的语言(的CoffeeScript),但无论如何都应该充当好sudo的代码:
get_pages_array = (total_page, each_side, curr_page) ->
if total_page <= (2*each_side)+5
# in this case, too few pages, so display them all
start_page = 1
end_page = total_page
else if curr_page<=each_side+3
# in this case, curr_page is too close to the beginning
start_page = 1
end_page = (2*each_side)+3
else if curr_page >= total_page - (each_side+2)
# in this case, curr_page is too close to the end
start_page = total_page - (2*each_side) - 2
end_page = total_page
else
# regular case
start_page = curr_page - each_side
end_page = curr_page + each_side
return_me = []
if start_page> 1
return_me.push "1"
if start_page>2
return_me.push "..."
for x in [start_page..end_page]
return_me.push x
if end_page<total_page-1
return_me.push "..."
if end_page<total_page
return_me.push total_page
return return_me
我使用each_side = 2这样的代码,因此,这就是我敢肯定它的工作原理。
编辑:固定逻辑按@Vextil
Answer 3:
这是纯粹的真棒! 我想我得到这个分页程序工作,我所描述的方式。
请看看,并尝试一下这里http://dev.thomaskile.me/?page=test-zone&module=Paginator ,让我知道...
很多逻辑数学的学习后,我终于来到了这样的结论:
为了使这一行为如此不同在不同级别,有必须要一些if
, elsef
-s来处理逻辑上每个级别seperatly。 我会尽力解释,但很难在一个很好的方式做...
这是我说的水平:
如果当前页==第一页:
计算出有多少页当前第从第二页开始后显示。
这需要计算基于有多少页面框会有至多完成。 (中档值是一个关键因素在这里)
[1] 2 3 4 5 6 7 8 ... 184 >
ELSEIF当前页是第一页和中音值刷爆之间 。
减少范围的页面逐个防止整个分页程序移动到右侧一旦加入prevPage。 计算页显示之前和当前页后,保持页面的数量等于槽整个事情。
< 1 [2] 3 4 5 6 7 ... 184 > < 1 2 [3] 4 5 6 7 ... 184 > < 1 2 3 [4] 5 6 7 ... 184 >
ELSEIF中音值刷爆在每一侧上。 这意味着我们在中间的某个地方。
中端页面+当前页面+端的网页。 很简单的我猜...
< 1 ... 3 4 [5] 6 7 ... 184 > ... ... ... < 1 ... 178 179 [180] 181 182 ... 184 >
ELSEIF当前页是在端值和末页之间
几乎相同的开始。 差异计算静态页面编号开始从页面,然后计算页显示前/后当前页面...
(这,顺便说一句,一直是我的头痛这个周末)
< 1 ... 178 179 180 [181] 182 183 184 > < 1 ... 178 179 180 181 [182] 183 184 > < 1 ... 178 179 180 181 182 [183] 184 >
ELSEIF当前是== NUMPAGES(数量tatal页)。 几乎相同的操作FIRSTPAGE ...计算多少页需要如何填补了整个事情了,并计算从哪里开始?
我现在需要做的是使代码本身更好的...
< 1 ... 178 179 180 181 182 183 [184] >
在我的情况下,“问题”是整个分页程序应基于中端价值,没有别的计算的一切。 对我来说,执行该分页程序在任何我未来的项目,我所要做的是:
$paginator = new paginator((int)); // e.g. number of total results from a db request
我可能在大多数情况下需要增加个人查询字符串,以确保a href
工作:
$paginator->set_queryString('my querystring');
而这几乎是所有。 我已经建立了几个这样的可选功能:
$paginator->set_resultsPerPage((int));
$paginator->set_midRange((int));
$paginator->set_pageIdentifier('querystring-pageNumber-identifier-name-for-get'); // whatever I needed
最后我显示分页程序页面控制器是这样的:
$paginator->pageController('full'); // full, med, min for different styles.
如果这些非都不够好,我可以这样调用每个按钮:
$paginator->prevPage();
$paginator->firstPage();
$paginator->listPages();
$paginator->lastPage();
$paginator->nextPage();
$paginator->pageJumper();
$paginator->perPageSelector();
Answer 4:
我假设你有分页这样的结构:
number_of_active_page +独立(...)+页(184)+ next_page(>)
您可以设置number_of_active_page成为8(包括prev_page(<)+网页(...和页码)
[1] 2 3 4 5 6 7 8 ... 184 >
[number_of_active_page(set to 8)] + separate + page + next_page
< 1 ... 3 4 [5] 6 7 ... 184 >
Answer 5:
这里有一个Python程序,说明如何正确地做到这一点:
def main():
num_pages = 13
page = 12
window = 5
start = page - window
end = page + window - 1
if start <= 0:
end = end - start + 1
start = 1
if end > num_pages:
end = num_pages
start = max(end - (window * 2) + 1, 1)
for no in range(start, end + 1):
print "{}*".format(no) if page == no else no
if __name__ == '__main__':
main()
Answer 6:
听到的是分页显示的一个简单的例子:
$paginationDisplay = ""; // Initialize the pagination output variable
// This code runs only if the last page variable is not equal to 1,
// if it is only 1 page we require no paginated links to display
if ($lastPage != "1"){
// This shows the user what page they are on, and the total number of pages
$paginationDisplay .= 'Page <strong>' . $pn .
'</strong> of ' . $lastPage. 'last';
// If we are not on page 1 we can place the Back button
if ($pn != 1) {
$previous = $pn - 1;
$paginationDisplay .= ' <a href="' .
$_SERVER['PHP_SELF'] . '?pn=' . $previous . '"> Back</a> ';
}
// Lay in the clickable numbers display here between the Back and Next links
$paginationDisplay .= '<span>' . $centerPages . '</span>';
// If we are not on the very last page we can place the Next button
if ($pn != $lastPage) {
$nextPage = $pn + 1;
$paginationDisplay .= ' <a href="' .
$_SERVER['PHP_SELF'] . '?pn=' . $nextPage . '"> Next</a> ';
}
}
Answer 7:
这是分页逻辑我有
$pLinks = 5; // Links per page
$pMids = 3;
$pTot = 10; // Total page
$pSel = 1 // Selected page
if (($pSel <= $pMids) || ($pTot <= $pLinks)) {
$sPage = 1;
$ePage = ($pTot <= $pLinks) ? $pTot : $pLinks;
} else {
$etPage = $pSel + ($pMids - 1);
$ePage = ($etPage <= $pTot) ? $etPage : $pTot;
$sPage = $ePage - ($pLinks - 1);
}
if ($pSel > $sPage) {
$sL = '<a href="#" id="1">First</a>';
$sN = '<a href="#" id="'.($pSel-1).'">«</a>';
} else {
$sL = 'First';
$sN = '«';
}
if ($pSel < $ePage) {
$eL = '<a href="#" id="'.$pTot.'">End</a>';
$eN = '<a href="#" id="'.($pSel+1).'">»</a>';
} else {
$eL = 'End';
$eN = '»';
}
$pOptions = '';
$pOptions .= '<span class="iPage">'.$pSel.'/'.$pTot.'</span>';
$pOptions .= '<span class="renderFL">'.$sL.'</span>';
$pOptions .= '<span class="renderPN">'.$sN.'</span>';
for ($i = $sPage; $i <= $ePage; $i++) {
if($i != $pSel) {
$pOptions .= '<span><a href="#" id="'.$i.'">'.$i.'</a></span>';
} else {
$pOptions .= '<span class="selected">'.$i.'</span>';
}
}
$pOptions .= '<span class="renderPN">'.$eN.'</span>';
$pOptions .= '<span class="renderFL">'.$eL.'</span>';
其结果将是这个样子:
1 -> [1] 2 3 4 5
2 -> 1 [2] 3 4 5
3 -> 1 2 [3] 4 5
..
5 -> 3 4 [5] 6 7
6 -> 4 5 [6] 7 8
..
8 -> 6 7 [8] 9 10
9 -> 6 7 8 [9] 10
10 -> 6 7 8 9 [10]
文章来源: Logic behind pagination like google