Laravel의 페이지 네이션에서 생성 된 링크에 GET 매개 변수 부여
예
요청 URL: htps : // 에아 mpぇ. 코 m / 우세 rs? 페르파게 = 100 & 파게 = 1
수정 전
pagenate에서 생성되는 URL에 per_page 쿼리가 없습니다.
$users = User::paginate($per_page);
$users->nextPageUrl(); // https://example.com/api/v1/users?page=2
수정 후
appends하여 페이지 이외의 쿼리도 추가되었습니다.
// page以外のパラメータを取得
$params = $request->except('page');
// appendsで付与
$users = User::paginate($per_page)->appends($params);
$users->nextPageUrl(); // https://example.com/api/v1/users?per_page=100&page=2
간단, 편리
Reference
이 문제에 관하여(Laravel의 페이지 네이션에서 생성 된 링크에 GET 매개 변수 부여), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/tech31/items/5b14aab55e3438ad3dde
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$users = User::paginate($per_page);
$users->nextPageUrl(); // https://example.com/api/v1/users?page=2
// page以外のパラメータを取得
$params = $request->except('page');
// appendsで付与
$users = User::paginate($per_page)->appends($params);
$users->nextPageUrl(); // https://example.com/api/v1/users?per_page=100&page=2
Reference
이 문제에 관하여(Laravel의 페이지 네이션에서 생성 된 링크에 GET 매개 변수 부여), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tech31/items/5b14aab55e3438ad3dde텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)