我正在尝试iframe
在我的 Ruby on Rails 应用程序中显示 YouTube 视频。例如,带有类似 url 的视频https://www.youtube.com/watch?v=XIv_JOmtgSA
不会显示在页面上,并且我收到以下错误:
Refused to display 'https://www.youtube.com/watch?v=XIv_JOmtgSA' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
我已经尝试过一些事情,比如在控制器上调用它:
def allow_iframe_requests
response.headers.delete('X-Frame-Options')
end
但我无法让它显示视频。我也在 Google Chrome 中尝试过隐身窗口。