Как вернуть все фильмы из omdbapi API?
I want to get all movies from the API based on search term but at the moment the API returns only the first 10 movies. The api has a page number parameter that returns the specific page number but I want to get all movies. <pre><pre>async getResults(page = 1) { try { const res = await axios(`${proxy}http://www.omdbapi.com/? apikey=${apiKey}&s=${this.query}&type=movie&page=${page}`); this.result = res.data; this.page = page; } catch (error) { console.log(error); } } }
Что я уже пробовал:
Мой код ниже возвращает только первые 10 фильмов, но я хочу получить все фильмы.
<pre><pre><pre>async getResults(page = 1) { try { const res = await axios(`${proxy}http://www.omdbapi.com/? apikey=${apiKey}&s=${this.query}&type=movie&page=${page}`); this.result = res.data; this.page = page; } catch (error) { console.log(error); } } }
Richard MacCutchan
Ну, вы только просите страницу=1. Может быть, вам стоит запросить несколько других страниц.
hamid1_2
Как вернуть все фильмы со всех страниц на основе поискового запроса
Dave Kreskowiak
Как насчет того, чтобы спросить людей, которые написали API?