如何在 Ionic 2 中使用 iFrame 加载 URL
How to load a URL with iFrame in Ionic 2
我想在 ionic 项目中使用 Iframe 加载 URL。请看下面的示例。
https://stackblitz.com/edit/ionic-tab-samples
我已经在 home.ts 文件中编写了我的代码。
如何在 tabVIew 中嵌入 URL。
提前致谢。
您正在尝试显示 github.com,但出现以下错误:
Refused to display 'https://github.com/' in a frame because an ancestor violates the following Content Security Policy directive: "frame-ancestors 'none'".
显示此错误是由于 GitHub 的内容安全策略不允许其视图在 iframe 中显示
如果您尝试使用其他方法,例如 https://www.openstreetmap.org/export/embed.html
,您的代码运行良好。根据您要显示的网站,您应该使用 In App Browser ionic native 插件。
我想在 ionic 项目中使用 Iframe 加载 URL。请看下面的示例。 https://stackblitz.com/edit/ionic-tab-samples
我已经在 home.ts 文件中编写了我的代码。
如何在 tabVIew 中嵌入 URL。
提前致谢。
您正在尝试显示 github.com,但出现以下错误:
Refused to display 'https://github.com/' in a frame because an ancestor violates the following Content Security Policy directive: "frame-ancestors 'none'".
显示此错误是由于 GitHub 的内容安全策略不允许其视图在 iframe 中显示
如果您尝试使用其他方法,例如 https://www.openstreetmap.org/export/embed.html
,您的代码运行良好。根据您要显示的网站,您应该使用 In App Browser ionic native 插件。