You need to enable JavaScript to run this app.
导航
返回JSON
最近更新时间:2024.05.31 17:48:06首次发布时间:2023.02.15 19:04:51

以下示例展示了如何使用边缘函数返回一个 JSON 格式的响应。

示例代码

async function handleRequest(event) {
  // 创建包含{hello: "world"}的数据
  const data = {
    hello: "world"
  }
    // 将数据转换为JSON格式
  const json = JSON.stringify(data);
  // 返回一个包含JSON数据的响应,并设置Content-Type为"application/json;charset=UTF-8"
  return event.respondWith(
    new Response(json, {
      headers: {
        "content-type": "application/json;charset=UTF-8"
      }
    })
  )
}

addEventListener("fetch", event => {
  return event.respondWith(handleRequest(event));
})

示例预览

图片