docs: make English the default docs language and fix link paths

This commit is contained in:
zhayujie
2026-05-31 17:52:22 +08:00
parent 126649f70f
commit 7bf4ef3d05
231 changed files with 8999 additions and 8974 deletions

View File

@@ -1,32 +1,32 @@
---
title: web_fetch - 网页获取
description: 获取网页或文档内容
title: web_fetch - Web Fetch
description: Fetch web pages and document content
---
获取 HTTP/HTTPS URL 的内容。对网页提取可读文本,对文档文件(PDFWordExcel 等)自动下载并解析内容。
Fetch the content of an HTTP/HTTPS URL. Web pages are extracted as readable text; document files (PDF, Word, Excel, etc.) are downloaded and parsed automatically.
## 参数
## Parameters
| 参数 | 类型 | 必填 | 说明 |
| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `url` | string | | HTTP/HTTPS URL(网页或文档链接) |
| `url` | string | Yes | HTTP/HTTPS URL (web page or document) |
## 支持的文件类型
## Supported file types
| 类型 | 格式 |
| Type | Formats |
| --- | --- |
| PDF | `.pdf` |
| Word | `.docx` |
| 文本 | `.txt``.md``.csv``.log` |
| 表格 | `.xls``.xlsx` |
| 演示文稿 | `.ppt``.pptx` |
| Text | `.txt`, `.md`, `.csv`, `.log` |
| Spreadsheet | `.xls`, `.xlsx` |
| Presentation | `.ppt`, `.pptx` |
## 使用场景
## Use cases
- 获取网页的文本内容
- 下载并解析远程文档
- 获取 API 响应内容
- Extract readable text from a web page
- Download and parse remote documents
- Inspect API response bodies
<Note>
`web_fetch` 只能获取静态 HTML 内容。如果页面需要 JavaScript 渲染(如 SPA 单页应用),请使用 `browser` 工具。
`web_fetch` only retrieves static HTML. For pages that require JavaScript rendering (such as SPAs), use the `browser` tool instead.
</Note>