分页的问题
使用分页功能后,分两页,当点第二页时,连接为:http://localhost/message/index.php/welcome/getPage/5
正常显示,这时第一页的连接
http://localhost/message/index.php/welcome/getPage/
getPage/后没有数字,控制器里取不到这个limitFrom的值怎么办
我在getPage方法里这样写
function getPage($requestNum) {
if ($requestNum=="") {
$requestNum=0;
}
也不行 加一个默认值啊!这是 PHP 基础知识。 我就是不懂怎么加这个默认值 function getPage($requestNum = '0') {
}
函数参数默认值。 谢谢啦:victory:
页:
[1]