使用 ruby​​(clojure 或 javascript)保存输入网页

发布于 2024-11-28 10:10:20 字数 447 浏览 0 评论 0原文

我有一个问题。我正在与一家食品供应商合作,我需要将每个订单的内容保存为 html。订单在单个页面上以链接形式列出,但这有两个困难

  1. 页面使用身份验证(需要提前登录)
  2. 这是真正的问题:页面使用大量 JavaScript。实际上,无需更改网址即可一切正常,因此我无法使用 wget 或 rio gem(网址不像 www.fooddoe.com/orderwww.fooddoe.com/order/1< /code> 等,但总是像 www.fooddoe.com/suplierx)。

我认为 firewatir 将是一个不错的选择,但问题是我需要以类似于 html (包括图像)的格式保存页面。可以使用firewatir吗? clojure 或 javascript 中还有其他选项吗?

非常感谢!!

I've got a problem. I'm working with a food supplier and I need save the content of each order as html. Orders are listed on a single page as links, but this has 2 difficulties

  1. Page uses authentication (need to log me in in advance)
  2. This is the real problem: the page use a lot of javascript. Actually everything works without changing the web address so I can't use wget or rio gem (url not like www.fooddoe.com/order, www.fooddoe.com/order/1, etc. but always like www.fooddoe.com/suplierx).

I think firewatir would be a good option but the problem is than I need to save the page in a format similar to html (including images). Is it possible using firewatir? Are there other options in clojure or javascript?

Thanks so much!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只为守护你 2024-12-05 10:10:20

我必须读两遍你的问题才能理解你的意思。

根据示例中的网址,我假设这是您的供应商网页。所以恕我直言,最简单的方法是:

  1. 查看网页源以了解它如何获取数据(99% 对于某种 AJAX 请求)。
  2. 请求发送到响应它的服务器。
  3. 现在有两种方法:
    • 了解如何发出请求,编写应用程序来发出此类请求并使用它生成网页(更困难,更通用)
    • 联系您的供应商并获取原始数据库(更简单但一次性的解决方案)

我认为这不是任何语言特有的问题。

I had to read your question twice to understand what you mean.

From web address from example I assume this is yours supplier web page. So IMHO the easiest way is:

  1. Look into source of web page to get an idea how it gets the data (99% for some kind of AJAX request).
  2. Request goes to the server which responds to it.
  3. Now there are two ways:
    • Get idea how the request is made and write and app to make such request and generate web page with it (more difficult, more general)
    • Contact your supplier and get original database (simpler but one-time solution)

And I think that this is not the question specific to any language.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文