Skip to content

Commit

Permalink
i18n(zh-cn): Update data-fetching.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
Nin3lee authored Dec 27, 2024
1 parent 8663c9e commit 172be79
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/content/docs/zh-cn/guides/data-fetching.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description: 学习如何使用 Astro fetch API 获取远程数据。

fetch 调用将会在构建时执行,并且数据都可用于组件模板中来生成动态 HTML。如果启用 [SSR](/zh-cn/guides/on-demand-rendering/) 模式,任何 fetch 调用都将在运行时执行。

💡 在 Astro 组件 script [使用**顶层 await**](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/await#top_level_await) 的优势。
💡 在 Astro 组件 script 中使用 [**顶层 await**](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/await#top_level_await) 的优势。

💡 将获取的数据作为参数传递给 Astro 和框架组件。

Expand Down Expand Up @@ -93,9 +93,9 @@ const response = await fetch("https://swapi-graphql.netlify.app/.netlify/functio
const json = await response.json();
const { film } = json.data;
---
<h1>Fetching information about Star Wars: A New Hope</h1>
<h2>Title: {film.title}</h2>
<p>Year: {film.releaseDate}</p>
<h1>获取有关《星球大战:曙光乍现》的信息</h1>
<h2>标题:{film.title}</h2>
<p>年份:{film.releaseDate}</p>
```

## 从无头 CMS 中获取
Expand Down

0 comments on commit 172be79

Please sign in to comment.