0
有沒有什麼辦法讓這段代碼工作?將'不支持的視頻'添加到Rails video_tag
= video_tag("#{video.mp4}", "#{video.ogv}", 'Your browser does not support the video tag.'
現在只增加了新的視頻源與文本消息,而不是返回它這樣的:
<video>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>