边缘开发者平台
  • 边缘函数
    • 概述
    • 快速指引
    • 操作指引
      • 函数管理
      • Web Debugging
      • 触发配置
      • Environment Variable
    • Runtime APIs
      • addEventListener
      • Cache
      • Cookies
      • Encoding
      • Fetch
      • FetchEvent
      • Headers
      • Request
      • Response
      • Streams
        • ReadableStream
        • ReadableStreamBYOBReader
        • ReadableStreamDefaultReader
        • TransformStream
        • WritableStream
        • WritableStreamDefaultWriter
      • Web Crypto
      • Web standards
      • Images
        • ImageProperties
    • 示例函数
      • Example Overview
      • 301 Redirect
      • Obtaining Client URL Information
      • Customization Based on Client Geo Location
      • Obtaining Client Geo Location Information
      • Batch Redirect
      • 返回 HTML 页面
      • 返回 JSON
      • Fetch 远程资源
      • 请求头鉴权
      • 修改响应头
      • AB 测试
      • 设置 Cookie
      • 基于请求区域重定向
      • Cache API 使用
      • 缓存 POST 请求
      • 流式响应
      • 合并资源流式响应
      • 防篡改校验
      • m3u8 改写与鉴权
      • 图片自适应缩放
      • 图片自适应 WebP
      • 自定义 Referer 限制规则
      • 远程鉴权
      • HMAC 数字签名
      • 自定义下载文件名
      • 获取客户端 IP
    • 最佳实践
      • 通过边缘函数实现自适应图片格式转换

Obtaining Client Geo Location Information

该示例捕获 HTTP 请求并响应用户地理位置信息,生成包含 ASN、国家、地区、城市及经纬度的 HTML 页面,可用于调试或信息地理位置信息展示。

示例代码

// 添加fetch事件监听器,当有请求进入时触发,使用handleRequest函数处理请求,并返回响应
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request));
});
// 定义一个异步函数handleRequest,用于处理传入的请求
async function handleRequest(request) {
// 初始化一个空字符串用于存放HTML内容
let html_content = "";
// 定义HTML的样式
let html_style = "body{padding:6em; font-family: sans-serif;} h1{color:#0000ff;}";
// 获取用户的地理位置信息
html_content += "<p> asn: " + request.eo.geo.asn + "</p>"; // 自治域系统编号
html_content += "<p> countryName: " + request.eo.geo.countryName + "</p>"; // 国家名称
html_content += "<p> countryCodeAlpha2: " + request.eo.geo.countryCodeAlpha2 + "</p>"; // 国家两字母代码
html_content += "<p> countryCodeAlpha3: " + request.eo.geo.countryCodeAlpha3 + "</p>"; // 国家三字母代码
html_content += "<p> countryCodeNumeric: " + request.eo.geo.countryCodeNumeric + "</p>"; // 国家数字代码
html_content += "<p> regionName: " + request.eo.geo.regionName + "</p>"; // 地区名称
html_content += "<p> regionCode: " + request.eo.geo.regionCode + "</p>"; // 地区代码
html_content += "<p> cityName: " + request.eo.geo.cityName + "</p>"; // 城市名称
html_content += "<p> Latitude: " + request.eo.geo.latitude + "</p>"; // 纬度
html_content += "<p> Longitude: " + request.eo.geo.longitude + "</p>"; // 经度
// 构建HTML响应内容
let html = `<!DOCTYPE html>
<head>
<title> Geolocation: Hello World By Edge Functions.</title>
<style> ${html_style} </style>
</head>
<body>
<h1>Geolocation: Hello World By Edge Functions.</h1>
<p> Welcome to try out the geolocation feature of Edge Functions.</p>
${html_content}
</body>`;
// 返回一个新的Response对象,包含HTML内容和相应的headers
return new Response(html, {
headers: {
"content-type": "text/html;charset=UTF-8", // 设置响应的Content-Type头部,指定返回内容为HTML
},
});
}

示例预览

在浏览器地址栏中输入匹配到边缘函数触发规则的 URL,即可预览到示例效果。


相关参考