How to access instance variables in CoffeeScript engine inside a Slim template

后端 未结 3 1583
再見小時候
再見小時候 2020-12-01 00:23

I have a Rails controller in which I am setting a instance variable -

@user_name = \"Some Username\"

In my .slim template I am using coffee

相关标签:
3条回答
  • 2020-12-01 00:25

    What's happening is that "#{@user_name}" is being interpreted as CoffeeScript, not as Ruby code that's evaluated and injected into the CoffeeScript source. You're asking, "How do I inject a Ruby variable into my CoffeeScript source?"

    The short answer is: Don't do this. The Rails team made an intentional decision not to support embedded CoffeeScript in templates in 3.1, because there's significant performance overhead to having to compile CoffeeScript on every request (as you'd have to do if you allowed arbitrary strings to be injected into the source).

    My advice is to serve your Ruby variables separately as pure JavaScript, and then reference those variables from your CoffeeScript, e.g.:

    javascript:
      user_name = "#{@user_name}";
    coffee:
      $(document).ready ->
        name = user_name
        alert name
    
    0 讨论(0)
  • 2020-12-01 00:33

    I tend to avoid inline javascript at all costs.

    A nice way to store variables in your HTML, to be used from your javascript, is to use the HTML5 data-attributes. This is ideal to keep your javascript unobtrusive.

    0 讨论(0)
  • 2020-12-01 00:50

    You could also use:

    $(document).ready ->
      name = <%= JSON.generate @user_name %>
      alert name
    

    This is because JSON is a subset of JavaScript.

    0 讨论(0)
提交回复
热议问题