drf PageNumberPagination http://127.0.0.1:8000/?page=1 window.onload = function () { handleShow() } async function handleShow() { const response = await fetch(`${BACKEND_API}/api/article/`, { method: 'GET', }) const response_json = await response.json() const count = response_json.article.count const all_page = parseInt(count/4) +1 const page_num = response_json.article.next.substr(-1) -1 const ..