Angular 15: Video-source tag works with a hard-coded URL but doesn't work with property binding

huangapple go评论77阅读模式
英文:

Angular 15: Video-source tag works with a hard-coded URL but doesn't work with property binding

问题

我正在尝试在Angular应用程序中构建一个视频播放器,使用硬编码值测试此代码时:

<video controls Autoplay="autoplay" autoplay="true">
    <source src="urlFromDB.mov" type="video/mp4" />
</video>

这可以正常工作。

但当我通过属性传递完全相同的URL时,出现了某种原因而无法工作:

<video controls Autoplay="autoplay" autoplay="true">
    <source [src]="property" type="video/mp4" />
</video>

在这两种情况下,Chrome开发工具中的HTML源显示相同的src URL。对于这个问题,无法找到专门的帮助,非常感激任何帮助。

英文:

I am trying to build a video player in an angular app, and while testing this code with hardcoded values:

&lt;video controls Autoplay=&quot;autoplay&quot; autoplay=&quot;true&quot;&gt;
      &lt;source src=&quot;urlFromDB.mov&quot; type=&quot;video/mp4&quot; /&gt;
&lt;/video&gt;

This works totally fine.
But when I pass the exact same URL through a property, it doesn't work for some reason.

&lt;video controls Autoplay=&quot;autoplay&quot; autoplay=&quot;true&quot;&gt;
      &lt;source [src]=&quot;property&quot; type=&quot;video/mp4&quot; /&gt;
&lt;/video&gt;

In both cases, the HTML source in chrome dev tools showed the same src URL. Wasn't able to find any help specifically for this, any help would be much appreciated.

答案1

得分: 2

我已解决这个问题:显然,浏览器在页面加载时对src属性的评估方式有点奇怪,所以最好的方法是使用Renderer2来动态创建<source>标签并将其附加到<video>标签(在ngOnInit函数中)。

为了其他遇到相同问题的人留下这个解决方案。

英文:

I've fixed this: Apparently, the browser has a weird way of evaluating the src attribute on page load, so the best way was to use Renderer2 to dynamically create the &lt;source&gt; tag and append it to &lt;video&gt; (in the ngOnInit function).

Leaving this open for somebody else with the same problem.

huangapple
  • 本文由 发表于 2023年2月18日 19:31:47
  • 转载请务必保留本文链接:https://go.coder-hub.com/75493033.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定