想了半天,怎么正确使用button_to和button_to_functions。我是 Rails 新手,看到很多令人困惑的语法。
我在 PagesHelper 模块 printString() 中创建了方法,并希望在单击按钮时调用它。有人可以指出怎么做吗?
我不想通过控制器跳转到新页面,我只想留在页面上并在点击按钮时打印出消息
非常感谢!
module PagesHelper
def printMessage()
return "this message from Helper"
end
end
------------------------------------------------------------------
this doesnt work
<%= button_to "Print", "printMessage()" %>