为什么我会收到此错误?
我可以 在 show.html.erb 中使用javascript_include_tag
with吗?
我想把线加载到里面content_for(:head)
<head>...</head>
如果我放<%= content_for(:head) do %>
,加载“refresh_chat.js”的行将不会出现。
如果我删除<%= content_for(:head) do %>
,加载“refresh_chat.js”的行出现,但不在<head>
意见/帖子/show.html.erb
1. <%= content_for(:head) do %>
2. <%= javascript_include_tag "refresh_chat.js" %>
3. <% end %>