forked from tanner/qotnews
fix bug in pagination.
This commit is contained in:
parent
daa49ede7e
commit
7f46646b9a
|
@ -1,5 +1,5 @@
|
|||
<script>
|
||||
import { debounce } from "lodash";
|
||||
import debounce from "lodash/debounce";
|
||||
import { goto, prefetch, stores } from "@sapper/app";
|
||||
export let segment;
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ const API_URL = process.env.API_URL || 'http://localhost:33842';
|
|||
export async function get(req, res) {
|
||||
const { skip, limit } = {
|
||||
skip: req.query.skip || 0,
|
||||
limit: req.query.query || 20,
|
||||
limit: req.query.limit || 20,
|
||||
};
|
||||
const response = await fetch(`${API_URL}/api?skip=${skip}&limit=${limit}`);
|
||||
res.writeHead(response.status, { 'Content-Type': 'application/json' });
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
export async function preload(page) {
|
||||
const { skip, limit } = {
|
||||
skip: page.query.skip || 0,
|
||||
limit: page.query.query || 20,
|
||||
limit: page.query.limit || 20,
|
||||
};
|
||||
const res = await this.fetch(`index.json?skip=${skip}&limit=${limit}`);
|
||||
const data = await res.json();
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
export async function preload(page) {
|
||||
const { skip, limit, q } = {
|
||||
skip: page.query.skip || 0,
|
||||
limit: page.query.query || 20,
|
||||
limit: page.query.limit || 20,
|
||||
q: page.query.q || "",
|
||||
};
|
||||
const res = await this.fetch(
|
||||
|
|
Loading…
Reference in New Issue
Block a user