gpt4 book ai didi

ajax - 如何在 Chrome 开发者工具中捕获特定的 AJAX (XHR) 事件?

转载 作者:行者123 更新时间:2023-12-04 03:48:09 25 4
gpt4 key购买 nike

我正在尝试从美国邮政服务的 Every Door Direct Mail 服务中抓取一些信息。服务很简单。在 the USPS EDDM website ,用户输入邮政编码,例如10030,点击搜索按钮,显示 map 。 该调用很容易在浏览器开发人员控制台中捕获。这只是一个像这样的 GET 请求:

https://gis.usps.com/arcgis/rest/services/EDDM/selectZIP/GPServer/routes/execute?f=json&env:outSR=102100&ZIP=10030&Rte_Box=R&UserName=EDDM

但是,问题在于试图捕获页面右侧显示的表格或文本信息。 “显示表格”选项:

enter image description here

像这样显示输出,此时您可以单击“全选(10 条路线)”,它会在页面右侧显示如下内容:

enter image description here

我如何捕获这组 Javascript“按钮单击”请求?现在我只是 try catch 这些请求,以便我可以以编程方式复制它们(在 Python 中,但这不是严格意义上的此处相关)。

enter image description here

最佳答案

看起来您需要发出两个 GET 请求才能获取所有数据。第二个请求是获取邮政信箱总数所必需的。也许它们可以合二为一,我没有深究。

  1. https://gis.usps.com/arcgis/rest/services/EDDM/selectZIP/GPServer/routes/execute?f=json&env%3AoutSR=102100&ZIP=10030&Rte_Box=R&UserName=EDDM
  2. https://gis.usps.com/arcgis/rest/services/EDDM/selectZIP/GPServer/boxes/execute?f=json&env%3AoutSR=102100&ZIP=10030&Rte_Box=B&UserName=EDDM&extent=%7B%22xmin %22%3A-15628202.596646052%2C%22ymin%22%3A749662.6717286934%2C%22xmax%22%3A-6235620.560966092%2C%22ymax%22%3A7070087.666571667%2C%22ymax%22%3A7070087.666571wkiB2%2patial3Reference%22s %3A102100%7D%7D

我知道您使用的是 Python,但由于您使用的是 Chrome DevTools,这里有一个 JavaScript 示例,说明如何获取送货地址总数:

let promises = [
fetch('https://gis.usps.com/arcgis/rest/services/EDDM/selectZIP/GPServer/routes/execute?f=json&env%3AoutSR=102100&ZIP=10030&Rte_Box=R&UserName=EDDM'),
fetch('https://gis.usps.com/arcgis/rest/services/EDDM/selectZIP/GPServer/boxes/execute?f=json&env%3AoutSR=102100&ZIP=10030&Rte_Box=B&UserName=EDDM&extent=%7B%22xmin%22%3A-15628202.596646052%2C%22ymin%22%3A749662.6717286934%2C%22xmax%22%3A-6235620.560966092%2C%22ymax%22%3A7070087.666571667%2C%22spatialReference%22%3A%7B%22wkid%22%3A102100%7D%7D')
];

Promise.all(promises)
.then(async res => {
if (res[0].ok && res[1].ok) {
const first = await res[0].json();
const second = await res[1].json();

const results = [...first.results[0].value.features, ...second.results[0].value.features];

console.log("Total Residential Addresses:", results.reduce((acc, row) => acc + row.attributes.RES_CNT, 0));
console.log("Total Business Addresses:", results.reduce((acc, row) => acc + row.attributes.BUS_CNT, 0));
console.log("Total Delivery Addresses:", results.reduce((acc, row) => acc + row.attributes.TOT_CNT, 0));
}
});

已更新以显示如何分别检索住宅和公司地址。

关于ajax - 如何在 Chrome 开发者工具中捕获特定的 AJAX (XHR) 事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64829016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com