2017-05-09 43 views
1

我創建了一個Rails應用程序。其中我包含了一個加載嵌入鏈接的iframe標籤,來自Box。雖然在電腦上測試它的效果很好page on computer/desktop,但在實際設備上,iframe中的視頻不起作用。它被遮住了page on actual device然而,它適用於UC瀏覽器。<iframe>在Google Chrome Mobile中被遮擋

回答

0

爲了允許iFrame跨域工作,您可以更改默認標頭以允許跨域的X-Frame。

config.action_dispatch.default_headers = { 
    'X-Frame-Options' => 'ALLOWALL' 
}