網(wǎng)站開(kāi)發(fā)中經(jīng)常會(huì)遇到整站搜索功能,而搜索之后會(huì)出現(xiàn)大量的數(shù)據(jù),而通常都是使用分頁(yè)的形式去展示這些數(shù)據(jù),當(dāng)搜索的字段中含有中文時(shí),就可能導(dǎo)致翻頁(yè)出現(xiàn)亂碼,導(dǎo)致翻頁(yè)失效。
搜索使用form表單提交的方式,前端代碼:
<form class="" method="get" action="{:urlrotue('Search/index')}">
<div class="header-form">
<input type="text" class="header-text" name="q" id="q" placeholder="請(qǐng)輸入搜索關(guān)鍵詞">
<a><input type="submit" class="header-sub" value=""></a>
</div>
</form>
下面是頁(yè)碼出現(xiàn)亂碼的地址,點(diǎn)擊后無(wú)法跳轉(zhuǎn)到第二頁(yè)的內(nèi)容:
查看了ThinkPHP\Library\Think\Page.class文件后發(fā)現(xiàn)代碼是這樣的
然后只需要這樣修改:
private function url($page){
return str_replace(urlencode('[PAGE]'), $page, $this->url);
}
$request_url = $_SERVER["REQUEST_URI"];
if(!preg_match("/\/p\/\d+/", $request_url)) {
$request_url = str_replace(".html", '/p/'.urlencode('[PAGE]').'.html', $request_url);
}
$this->url = preg_replace("/\/p\/\d+\.html/", '/p/'.urlencode('[PAGE]').'.html', $request_url);
得到的正常的地址應(yīng)該是這樣的:
在后續(xù)的使用過(guò)程中又發(fā)現(xiàn),URL在Apache上是/不會(huì)有問(wèn)題,但是在IIS上用/會(huì)亂碼,必須用?=這種格式才行或者到需要通過(guò)url?=傳遞參數(shù)時(shí)。
$this->parameter[$this->p] = '[PAGE]';
$paramStr="";
foreach($this->parameter as $key => $value){
$paramStr = $paramStr.'&'.$key.'='.$value;
}
$paramStr = substr($paramStr,1,strlen($paramStr));
$this->url = U(ACTION_NAME).(strpos(U(),"?")?'&':'?').$paramStr;
得到的地址是這樣的:
如沒(méi)特殊注明,文章均為方維網(wǎng)絡(luò)原創(chuàng),轉(zhuǎn)載請(qǐng)注明來(lái)自http://m.oulysa.com/news/6332.html