【问题标题】:Phonegap / Cordova Youtube embed videos on iOS not workingPhonegap / Cordova Youtube 在 iOS 上嵌入视频不起作用
【发布时间】:2017-09-11 04:47:45
【问题描述】:

我正在尝试将 Youtube 视频嵌入到我的 IOS Cordova 项目中。它没有在 iPad 和 Iphone 上显示视频。 这是我的代码

<iframe width="100%" height="221.02"
  src="https://www.youtube.com/embed/uFyaDBmvR8c?showinfo=0&frameborder=0&allowfullscreen></iframe>

【问题讨论】:

    标签: ios iphone cordova youtube


    【解决方案1】:

    尝试更改此设置。

    <iframe width="100%" height="221.02" src="https://www.youtube.com/embed/uFyaDBmvR8c?showinfo=0" frameborder="0" allowfullscreen></iframe> 
    

    到这里。

     <iframe style="width:100%; height:221px;" src="https://www.youtube.com/embed/uFyaDBmvR8c?showinfo=0" frameborder="0" allowfullscreen></iframe>
    

    【讨论】:

      【解决方案2】:

      我遇到了同样的问题,我添加了白名单插件:

      <plugin name="cordova-plugin-whitelist" source="npm" spec="*"/>
      

      然后白名单 https 访问 Youtube:

      <allow-navigation href="https://*youtube.com/*"/>
      

      在 config.xml 文件中。 现在它正在工作。

      【讨论】:

      • 修复了视频播放问题,但 标记中的视频缩略图仍然无法从 youtube 链接加载缩略图
      猜你喜欢
      • 2018-02-08
      • 1970-01-01
      • 2016-03-04
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-03-27
      • 2012-08-21
      • 2014-12-12
      相关资源
      最近更新 更多