我遇到此错误。我已经安装了nodejs,还添加了gem'therubyracer'。
ActionView :: Template :: Error(SyntaxError:[stdin]:21:3:意外():
<%= csp_meta_tag %>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
app / views / layouts / application.html.erb:9:`_app_views_layouts_application_html_erb__3921329476922966565_70164612108380'
但是,在我的rooms.coffee文件中添加此代码块后,出现错误:
$('#new_message').submit(e) ->
$this = $(this)
textarea = $this.find('#message_body')
if $.trim(textarea.val()).length > 1
App.global_chat.send_message textarea.val(),
messages.data('chat-room-id')
textarea.val('')
e.preventDefault()
return false
我当前正在使用Linux Mint。