Data Fetching
Nuxt.js supports traditional Vue patterns for loading data in your client-side app, such as fetching data in a component's mounted()
hook. Universal apps, however, need to use Nuxt.js-specific hooks to be able to render data during server-side rendering. This allows your page to render with all of its required data present.
Nuxt has two hooks for asynchronous data loading:
- The
fetch
hook (Nuxt 2.12+). This hook can be placed on any component, and provides shortcuts for rendering loading states (during client-side rendering) and errors. - The
asyncData
hook. This hook can only be placed on page components. Unlikefetch
, this hook does not display a loading placeholder during client-side rendering: instead, this hook blocks route navigation until it is resolved, displaying a page error if it fails.
In versions of Nuxt before 2.12, the fetch
hook worked much like asyncData
does today. This functionality is still supported today for backwards-compatibility: if a context
argument is accepted in your fetch()
, it will be considered a "legacy" fetch hook. This functionality is deprecated, and should be replaced with either asyncData(context)
or an anonymous middleware using middleware(context)
.
These hooks can be used with any data fetching library you choose. We recommend using @nuxt/http or @nuxt/axios for making requests to HTTP APIs. More information about these libraries, such as guides for configuring authentication headers, can be found in their respective documentation.
The fetch hook
This hook is only available for Nuxt 2.12 and later.
fetch
is a hook called during server-side rendering after the component instance is created, and on the client when navigating. The fetch hook should return a promise (whether explicitly, or implicitly using async/await
) that will be resolved:
- On the server before the initial page is rendered
- On the client some time after the component is mounted
It exposes $fetchState
at the component level with the following properties:
pending
is aBoolean
that allows you to display a placeholder whenfetch
is being called on client-side.error
is eithernull
or anError
thrown by the fetch hooktimestamp
is a timestamp of the last fetch, useful for caching withkeep-alive
In addition to fetch being called by Nuxt, you can manually call fetch in your component (to e.g. reload its async data) by calling this.$fetch()
.
<template>
<p v-if="$fetchState.pending">Fetching mountains...</p>
<p v-else-if="$fetchState.error">An error occured :(</p>
<div v-else>
<h1>Nuxt Mountains</h1>
<ul>
<li v-for="mountain of mountains">{{ mountain.title }}</li>
</ul>
<button @click="$fetch">Refresh</button>
</div>
</template>
<script>
export default {
data() {
return {
mountains: []
}
},
async fetch() {
this.mountains = await fetch(
'https://api.nuxtjs.dev/mountains'
).then(res => res.json())
}
}
</script>
You can access the Nuxt context within the fetch hook using this.$nuxt.context
.
Options
fetchOnServer
: Boolean
or Function
(default: true
), call fetch()
when server-rendering the page
fetchDelay
: Integer
(default: 200
), set the minimum executing time in milliseconds (to avoid quick flashes)
When fetchOnServer
is falsy (false
or returns false
), fetch
will be called only on client-side and $fetchState.pending
will return true
when server-rendering the component.
export default {
data() {
return {
posts: []
}
},
async fetch() {
this.posts = await fetch('https://api.nuxtjs.dev/posts').then(res =>
res.json()
)
},
// call fetch only on client-side
fetchOnServer: false
}
Listening to query string changes
The fetch
hook is not called on query string changes by default. To watch for query changes you can add a watcher on $route.query
and call $fetch
:
export default {
watch: {
'$route.query': '$fetch'
},
async fetch() {
// Called also on query changes
}
}
Caching
You can use keep-alive
directive in <nuxt/>
and <nuxt-child/>
component to save fetch
calls on pages you already visited:
<template>
<nuxt keep-alive />
</template>
You can also specify the props passed to <keep-alive>
by passing a prop keep-alive-props
to the <nuxt>
component.
<nuxt keep-alive :keep-alive-props="{ max: 10 }" />
Keeps only 10 page components in memory.
activated
hook
Using Nuxt will directly fill this.$fetchState.timestamp
(timestamp) of the last fetch
call (ssr included). You can use this property combined with activated
hook to add a 30 seconds cache to fetch
:
<template> ... </template>
<script>
export default {
data() {
return {
posts: []
}
},
activated() {
// Call fetch again if last fetch more than 30 sec ago
if (this.$fetchState.timestamp <= Date.now() - 30000) {
this.$fetch()
}
},
async fetch() {
this.posts = await fetch('https://api.nuxtjs.dev/posts').then(res =>
res.json()
)
}
}
</script>
The navigation to the same page will not call fetch
if last fetch
call was before 30 sec ago.
Async Data
asyncData
is only available for pages and you don't have access to this
inside the hook.
asyncData
is another hook for universal data fetching. Unlike fetch
, which requires you to set properties on the component instance (or dispatch Vuex actions) to save your async state, asyncData
simply merges its return value into your component's local state. Here's an example using the @nuxt/http library:
<template>
<div>
<h1>{{ post.title }</h1>
<p>{{ post.description }}</p>
</div>
</template>
<script>
export default {
async asyncData({ params, $http }) {
const post = await $http.$get(`https://api.nuxtjs.dev/posts/${params.id}`)
return { post }
}
}
</script>
Unlike fetch
, the promise returned by the asyncData
hook is resolved during route transition. This means that no "loading placeholder" is visible during client-side transitions (although the loading bar can be used to indicate a loading state to the user). Nuxt will instead wait for the asyncData
hook to be finished before navigating to the next page or display the error page).
This hook can only be used for page-level components. Unlike fetch
, asyncData
cannot access the component instance (this
). Instead, it receives the context as its argument. You can use it to fetch some data and Nuxt.js will automatically merge the returned object with the component data.
In the upcoming examples, we are using @nuxt/http which we recommend for fetching data from an API.
Listening to query changes
The asyncData
method is not called on query string changes by default. If you want to change this behavior, for example when building a pagination component, you can set up parameters that should be listened to with the watchQuery
property of your page component.
Learn more about the watchQuery property and see the list of available keys in context.