我希望用户给我一个以.mp3扩展名结尾的网址,并在show
页面播放。
我使用scaffolding为User创建新页面以提交URL,并且在show页面中我希望此URL播放相关的媒体文件:
<p>
<strong>Music url:</strong>
<%= @profile_music.music_url %>
</p>
如果是普通的HMTL页面,我会使用:
<EMBED SRC= "url.mp3" width="360" height="165" HIDDEN=false AUTOSTART=true loop="false" volume="60">
所以我需要这样的东西:
<EMBED SRC= @profile_music.music_url width="360" height="165" HIDDEN=false AUTOSTART=true loop="false" volume="60">
答案 0 :(得分:0)
使用此:
<EMBED SRC="<%= @profile_music.music_url %>"
width="360" height="165" HIDDEN=false AUTOSTART=true loop="false" volume="60">
erb将使用实际内容解释 <%= @profile_music.music_url %>
。