我正在尝试创建一个框架集,我正在使用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/basket
我的html源代码
<html>
<head></head>
<body>
<frameset>
<frame src="http://www.nba.com" />
</frameset>
</head>
</html>
但是萤火虫给了我
<html>
<head></head>
<body></body>
</html>
并且窗口不显示nba.com框架。有谁知道为什么会这样?
答案 0 :(得分:1)
这不是一个Rails问题,而是一个html问题。
框架集不属于body标签。试试这个:
<html>
<head></head>
<frameset>
<frame src="http://www.nba.com" />
</frameset>
</html>