fetch
一个用于 polyfilled fetch 的包装器。
const response = await drupal.fetch(input, init?): Promise<Response>
输入: RequestInfo
- 必需
- 要从中获取的 URL。
初始化: FetchOptions
- 可选
- 具有
withAuth
的 fetch 选项。 - 如果设置了
withAuth
,则fetch
将在发出请求之前获取Authorization
标头。
注释
- 要提供您自己的自定义 fetcher,请参阅 fetcher 文档。
示例
const url = drupal.buildUrl("/jsonapi/node/article", { sort: "-created", "fields[node--article]": "title,path",})
const response = await drupal.fetch(url.toString())