如何通过 iframe 从 Heroku link 到 github 页面?
How can I link from Heroku to github pages via iframe?
我的 heroku 应用程序依赖 github 页面通过 iframe,这不起作用,因为浏览器告诉我它的混合内容。所以
<iframe src="//larsvers.github.io/tree-of-charts"></iframe>
生成一个带有 chrome 控制台错误的空 iframe
Mixed Content: The page at 'https://gradients10.herokuapp.com/project/tree-of-charts' was loaded over HTTPS, but requested an insecure resource 'http://larsvers.github.io/tree-of-charts/'. This request has been blocked; the content must be served over HTTPS.
我假设 github 的 https 还没有完全成熟,所以 heroku 不会指向它。我尝试使用 target="_parent"
(正如有人在 Quora 上建议的那样),但运气不佳。
有人知道解决这个问题的方法吗?或者其他选择?
我只需要更具体地使用
<iframe src="//larsvers.github.io/tree-of-charts/"></iframe>
将路径表示为带有 尾部反斜杠 的目录。似乎 https(和 url 命名礼仪)需要这种程度的特异性...
我的 heroku 应用程序依赖 github 页面通过 iframe,这不起作用,因为浏览器告诉我它的混合内容。所以
<iframe src="//larsvers.github.io/tree-of-charts"></iframe>
生成一个带有 chrome 控制台错误的空 iframe
Mixed Content: The page at 'https://gradients10.herokuapp.com/project/tree-of-charts' was loaded over HTTPS, but requested an insecure resource 'http://larsvers.github.io/tree-of-charts/'. This request has been blocked; the content must be served over HTTPS.
我假设 github 的 https 还没有完全成熟,所以 heroku 不会指向它。我尝试使用 target="_parent"
(正如有人在 Quora 上建议的那样),但运气不佳。
有人知道解决这个问题的方法吗?或者其他选择?
我只需要更具体地使用
<iframe src="//larsvers.github.io/tree-of-charts/"></iframe>
将路径表示为带有 尾部反斜杠 的目录。似乎 https(和 url 命名礼仪)需要这种程度的特异性...