If an error is thrown by data(), then Vike renders your error page and there is usually nothing for you to do (beyond defining an error page /pages/_error/+Page.js).
But if you want a more precise error handling (such as showing an insightful error message to the user instead of some generic "Something went wrong"), then use throw render() and/or throw redirect().
// /pages/movies/+data.js// Environment: serverexport { data }import fetch from 'node-fetch'import { render, redirect } from 'vike/abort'async function data(pageContext) { const { id } = pageContext.routeParams const response = await fetch(`https://star-wars.brillout.com/api/films/${id}.json`) if (response.status === 404) { // Tell the user what went wrong throw render(404, `Movie with ID ${id} doesn't exist.`) /* Or redirect the user: throw redirect('/movie/add') */ /* Or render the movie submission form while preserving the URL: throw render('/movie/add') */ } // ...}
Alternatively, you can use throw render() and throw redirect() inside of a guard() hook, see ガイド > 認証.
Server-side
By default, the data() hook always runs the server-side. Thus you can directly use ORM/SQL database queries:
// /pages/movies/+data.jsexport { data }// Note how we use `node-fetch`; this file is only run on the server-side, thus we don't need// to use an isomorphic (aka universal) implementation such as `cross-fetch`.import fetch from 'node-fetch'async function data(pageContext) { const response = await fetch('https://star-wars.brillout.com/api/films.json') let { movies } = await response.json() /* Or with an ORM: let movies = await Movie.findAll() */ /* Or with SQL: let movies = await sql.run('SELECT * FROM movies;') */ // `movies` is serialized and passed to the client. Therefore, we pick only the // data the client needs in order to minimize what is sent over the network. movies = movies.map(({ title, release_date }) => ({ title, release_date })) return { movies }}
Client-side
By default, data() always runs on the server-side.
But,
by using meta,
you can tell Vike to run data() also on the client-side: Vike calls data() on the server-side for the first page the user visits
and then, for subsequent page navigations, Vike calls data() on the client-side.
In general, we recommend running data() only on the server-side because it's usually easier to write code that only runs on the server-side.
That said, if you want to minimize requests made to your server, then it makes sense to run data() on the client-side.
Keep in mind that you'll have to make sure that your data() hook is isomorphic: it needs to be able to run on the server-side as well as on the client-side.
You can also set data()'s meta config env to { client: true, server: false}: Vike will then always call data() on the client-side and never on the server-side.
pageContext.data
The data() hook sets the value of pageContext.data. (While useData() exposes the value of pageContext.data.)
This means that, beyond using useData(), you can also access the data in other hooks over pageContext.data.
Without useData()
The data() hook is usually used together with the component hook useData() which is provided by the UI framework Vike extension (vike-react/vike-vue/vike-solid).
In general, for improved DX, we recommend using data() together with a useData() implementation.
That said, you can also use data() without useData():
// /renderer/+onRenderHtml.js// Environment: serverexport { onRenderHtml }import { escapeInject, dangerouslySkipEscape } from 'vike/server'import { renderToHtml, createElement } from 'some-ui-framework'async function onRenderHtml(pageContext) { // The data is available at pageContext.data const { Page, data } = pageContext const pageHtml = await renderToHtml( // Pass pageContext.data to the <Page> component createElement(Page, data) ) /* JSX: const pageHtml = await renderToHtml(<Page {...data} />) */ return escapeInject`<html> <div id='view-root'> ${dangerouslySkipEscape(pageHtml)} </div> </html>`}
// /renderer/+onRenderClient.js// Environment: browserexport { onRenderClient }import { hydrateDom, createElement } from 'some-ui-framework'async function onRenderClient(pageContext) { const { Page, data } = pageContext await hydrateDom( // Pass pageContext.data to the <Page> component createElement(Page, data), document.getElementById('view-root') ) /* JSX: await hydrateDom(<Page {...data} />, document.getElementById('view-root')) */}
// /pages/movies/+Page.js// Environment: browser and serverexport { Page }// In the onRenderHtml() and onRenderClient() hooks above,// pageContext.data is passed to the <Page> component.function Page(data) { const { movies } = data // ...}