项目在本地用 php artisan serve
运行正常,分页没问题。然后尝试用 docker 来部署,用的是这个镜像richarvey/nginx-php-fpm
,其中 nginx 的配置如下:
server {
listen 80;
server_name example.com;
root /example.com/public;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}
分页部分代码如下
public function index()
{
$permissions = AdminPermission::paginate(20);
return view('permission.index', compact('permissions'));
}
模板里面也用到了 {{$permissions->links()}}
按文档来说,laravel 默认接收 page 参数作为分页依据,访问 /xxx?page=n
来翻页。然而发现翻页无效,返回的结果都是第一页的内容(可以保证不止一页),并且模板里的分页部分当前页也永远是第一页。有人遇到过吗? 另,除了分页有问题,其他所有都正常。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.