Rails:框架集未显示
我正在尝试创建一个框架集,并且我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是Rails 问题,而是html 问题。
框架集不属于 body 标记。试试这个:
This is not a Rails question, but a html question.
Framesets don't belong in the body tag. Try this: