我有生成一些js的类。我应该把这个类放在哪里以及如何在视图中调用它的方法?
class Hits
@@config = Settings.statistic
class << self
def js_counter
if @@config.enable
...
end
end
end
end
谢谢!
我有生成一些js的类。我应该把这个类放在哪里以及如何在视图中调用它的方法?
class Hits
@@config = Settings.statistic
class << self
def js_counter
if @@config.enable
...
end
end
end
end
谢谢!