如何使用 Excel 公式(无 VBA)在 HTTP POST 响应中检索一段数据?
有没有什么方法可以制作一个 Excel 超链接公式,在单击时发送 HTTP POST 并解析响应以填充另一个单元格?
Is there any way to craft an Excel hyperlink formula that would send an HTTP POST on click and parse the response to populate another cell?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用内置Excel公式,
=WEBSERVICE(A2)
这将填充单元格中 URL 的内容。
Use built-in excel formula,
=WEBSERVICE(A2)
This will populate content of the URL in the cell.
[编辑] 抱歉,我没有在您的标题中看到“无 vba”。但我看不出你会怎么做。
您可以使用 vba 来完成此操作并在这些线程上找到有价值的信息:
如何使用 VBA 从 Excel 向服务器发送 HTTP POST 请求?
从以下位置执行 HTTP Post在 Excel 中并解析结果
这是一个代码示例:
问候,
[EDIT] Sorry, i didn't see "no vba" in your title. But i can't see how you would do.
You can do it with vba and find valuable information on these threads:
How can I send an HTTP POST request to a server from Excel using VBA?
Perform HTTP Post from within Excel and Parse Results
Here is a code sample:
Regards,