如上所述,我有一个rails 4应用程序,其他网站有几个iframe。我已经能够在页面加载时加载其中一个并且可以找到here。我无法加载的页面是here。如果刷新页面,它将加载。
有效的代码如下所示,我为没有运气的情况下加载的页面尝试了相同的代码。
after_action :allow_cognito_iframe
def allow_cognito_iframe
response.headers['X-Frame-Options'] = 'ALLOW-FROM https://services.cognitoforms.com'
end