我有这个:
<%= link_to 'Delete', post , method: :delete, data: { confirm: 'Are you sure?' } %>
Run Code Online (Sandbox Code Playgroud)
点击后,Rails删除当前的记录帖子.
我想删除后刷新当前页面.
我在post.url中有视频网址
如何添加youtube框架?
我用过这个
<% @posts.each do |post| %>
<iframe width="560" height="315" src= <%= \" post.url \"%>
frameborder="0" allowfullscreen>
</iframe>
<% end %>
Run Code Online (Sandbox Code Playgroud)
并得到这个错误
语法错误,意外$ undefined ... reeze;
@ output_buffer.append =(\"post.url \");
我也用过
src= <%= post.url %>
Run Code Online (Sandbox Code Playgroud)
我没有看到任何东西