如何从 Rails 页面中请求 Rails 页面?

发布于 2024-09-13 15:10:50 字数 526 浏览 5 评论 0原文

某个操作必须根据 uri 参数加载 html 页面。它适用于所有有效的 uri,除了当前服务器的 uri 之外。有没有一种简单的方法可以从控制器内请求页面?

require 'uri'
class MainController < ApplicationController
  def foo
    uri = URI(params[:uri])
    if uri.host =~ /localhost|mydomain\.com/
      # what goes here?
    else
      @html = Net::HTTP.get(uri)
    end
    # Do something useful with @html...
  end
end
# The code should work for http://localhost/foo?uri=http://apple.com/
# as well as for http://localhost/foo?uri=http://localhost/bar

A certain action must load an html page according a uri parameter. It works fine for all valid uris, except those of the current server. Is there an easy way to request a page from within a controller?

require 'uri'
class MainController < ApplicationController
  def foo
    uri = URI(params[:uri])
    if uri.host =~ /localhost|mydomain\.com/
      # what goes here?
    else
      @html = Net::HTTP.get(uri)
    end
    # Do something useful with @html...
  end
end
# The code should work for http://localhost/foo?uri=http://apple.com/
# as well as for http://localhost/foo?uri=http://localhost/bar

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

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

发布评论

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

评论(1

琴流音 2024-09-20 15:11:24

为什么要进行区分呢?如果没有有关您要完成的任务的更多详细信息,我只会为任何 URL 调用 Net::HTTP.get(uri) 。显然,您应该过滤掉 /foo 以避免无限循环。

Why make a distinction? Without more details regarding what you're trying to accomplish, I would just call Net::HTTP.get(uri) for any URL. You should obviously filter out /foo to avoid an infinite loop though.

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