我有视频:用户在一个名为 Video 的类中输入的字符串,它是一个 youtube 链接。
我的 iframe 不断给我错误“没有将 nil 隐式转换为字符串”。这是我的代码。
我的视频/show.html.erb
<div class="row">
<div class="span8">
<h3>Videos</h3>
<ol class="video">
<iframe width="560" height="349" src="<%= "http://www.youtube.com/embed/"+@video.code %>"></iframe>
</ol>
</div>
</div>
我的助手/VideosHelper:
def code
self.video.split('/').last if self.video
end
我的视频控制器:
def show
@video = Video.find(params[:id])
end