fetch

一个用于 polyfilled fetch 的包装器。


const response = await drupal.fetch(input, init?): Promise<Response>
  • 输入: RequestInfo
    • 必需
    • 要从中获取的 URL。
  • 初始化: FetchOptions
    • 可选
    • 具有 withAuth 的 fetch 选项。
    • 如果设置了 withAuth,则 fetch 将在发出请求之前获取 Authorization 标头。

注释


示例

const url = drupal.buildUrl("/jsonapi/node/article", {
sort: "-created",
"fields[node--article]": "title,path",
})
const response = await drupal.fetch(url.toString())