我是 ruby on rails 的新手。我正在按照教程来了解 ajax 如何使用 link_to 和 remote=true 在 Rails 上工作。我有以下代码。
// in view/home/sample.html.erb
<head> <%= javascript_include_tag "prototype.js" %> </head>
<body>
<div id="time_div">
<%= link_to("click here", :update=>'time_div' ,:url=>{:action => :say_when} , :remote => true) %>
</div>
</body>
// in /controllers/home_controller.rb
def sample
end
def say_when
render_text "<p>The time is <b>" + DateTime.now.to_s + "</b></p>"
end
我已经将prototype.js 放在assets/javascripts 文件夹中。但我没有时间在浏览器上。请有人帮忙