RoutingError在iFrame中(RoutingError inside an iFrame

2019-08-17 01:38发布

我搭建的一个测试应用程序,当我把一个iFrame我认为里面有一个路由错误:

这是我加入的iFrame显示模板:

意见/酒吧/ show.html.erb:

<p>
  <b>Body:</b>
  <%=h @bar.body %>
</p>

<iframe src=“http://www.yahoo.com” style=“width:500px; height:500px;” frameborder=“0?></iframe>


<%= link_to 'Edit', edit_bar_path(@bar) %> |
<%= link_to 'Back', bars_path %>

我打电话这样的页面:

http://localhost:3000/bars/1

该页面显示正常。 但是,在页面内的IFRAME这样说:

Routing Error

No route matches "/bars/%E2%80%9Chttp://www.yahoo.com%E2%80%9D" 
with {:method=>:get}

我没有做任何改变从默认的routes.rb:

ActionController::Routing::Routes.draw do |map|
  map.resources :bars
  map.connect ':controller/:action/:id'
  map.connect ':controller/:action/:id.:format'
end

Answer 1:

你没有使用正确的双引号字符,这是“



文章来源: RoutingError inside an iFrame