如何在haml中使用内联JavaScript中的Ruby变量?

我的控制器中有以下变量:

class MyController < ApplicationController

  def my_method
    @status = "status"
  end
end

在我的haml视图中,我尝试了跟随,但它不起作用(因为它使用默认的.erb语法):

#app/views/mycontroller/me_method.html.haml

:javascript
  alert(<%=raw @status %>)

如何在内联JavaScript中使用@status变量?

解决方法:

您可以使用简单的“#{}”插值标记将ruby变量与HAML一起使用.

你的代码:

:javascript
    alert(<%=raw @status %>)

可能解决方案

:javascript
    alert("#{@status}")
上一篇:世界各国的国庆日类别图与趣闻


下一篇:计算机中的「魔数」(magic number)