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 engine to generate javascript and want to print out the user name from client-sie javascript code -
coffee:
$(document).ready ->
name = "#{@user_name}"
alert name
But this is the javascript that is being generated??
$(document).ready(function() {
var name;
name = "" + this.my_name;
alert(name);
}
How do I access controller instance variables in my CoffeeScript code??
I am tagging this as haml since I am guessing haml will have the same issue when using CoffeeScript .
$(document).ready =>? – Thilo Nov 13 '11 at 0:04@user_name. Ruby and CoffeeScript use the same string interpolation syntax. – Trevor Burnham Nov 13 '11 at 0:26"#{@user_name}"tothis.my_name? – Thilo Nov 13 '11 at 0:35