README.md
· 258 B · Markdown
Sin formato
# Fetching JSON Data in Astro
## Fetch
To fetch data in Astro, you need to request from the JSON url:
```jsx
const RawData = new Request('https://example.org/data.json')
```
Then, format it to JSON, if not already:
```jsx
const JsonData = RawData.json()
```
Fetching JSON Data in Astro
Fetch
To fetch data in Astro, you need to request from the JSON url:
const RawData = new Request('https://example.org/data.json')
Then, format it to JSON, if not already:
const JsonData = RawData.json()
| 1 |