Rails:框架集未显示

发布于 2024-09-17 16:54:41 字数 931 浏览 7 评论 0原文

我正在尝试创建一个框架集,并且我正在使用 Rails 来完成此操作。基本上我的视图看起来像这样

<html>
<head></head>
<body>

<frameset>
    <frame src="http://www.nba.com" />
</frameset>

</head>
</html>

我的控制器看起来像

  def basket
      respond_to do |format|
        format.html { render 'basket.html.erb', :layout => false }
      end
  end

但是当我转到

http://localhost:3000/stores/购物篮

我得到了这个 html 源代码

<html>
<head></head>
<body>

<frameset>
    <frame src="http://www.nba.com" />
</frameset>

</head>
</html>

,但是 firebug 给了我

<html>
<head></head>
<body></body>
</html>

,并且窗口不显示 nba.com 框架。有谁知道为什么会发生这种情况?

I am trying to create a frameset and I am doing this using Rails. Basically my view looks like this

<html>
<head></head>
<body>

<frameset>
    <frame src="http://www.nba.com" />
</frameset>

</head>
</html>

And my controller looks like

  def basket
      respond_to do |format|
        format.html { render 'basket.html.erb', :layout => false }
      end
  end

But when I go to

http://localhost:3000/stores/basket

I get this for html source

<html>
<head></head>
<body>

<frameset>
    <frame src="http://www.nba.com" />
</frameset>

</head>
</html>

but firebug gives me

<html>
<head></head>
<body></body>
</html>

and the window does not display the nba.com frame. Does anyone know why this is happening?

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

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

发布评论

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

评论(1

堇色安年 2024-09-24 16:54:41

这不是Rails 问题,而是html 问题。

框架集不属于 body 标记。试试这个:

<html>
<head></head>

<frameset>
    <frame src="http://www.nba.com" />
</frameset>

</html>

This is not a Rails question, but a html question.

Framesets don't belong in the body tag. Try this:

<html>
<head></head>

<frameset>
    <frame src="http://www.nba.com" />
</frameset>

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