我有一个需要在索引页面上显示时钟的应用程序。 所以我有一个像这样的静态控制器:
控制器/ static_controller.rb:
class StaticController < ApplicationController
def index
@time = Time.now.strftime("%H:%M:%S ")
end
def get_time
@time = Time.now.strftime("%H:%M:%S ")
render partial: "date"
end
end
我在views / static / index.html.erb上有这个:
<div class="time-container">
<%= render partial: "date" %>
</div>
以及仅包含var:
的部分视图/ static / _date.html.erb <%=@time%>
我使用这个JS函数来尝试更新assets / javascripts / static.js的时间:
$(document).ready(function () {
setInterval(function () {
$('.time-container').load('/static/get_time');
}, 1000);
});
我的routes.rb是这样的:
Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
root "static#index"
resources :static
end
这样,时钟会在页面加载时显示,但它始终保持不变并且不会更新。我错过了什么吗?
答案 0 :(得分:1)
您的路线与您构建的流程不匹配。
你很幸运,静态/索引有效,因为它包含在资源声明中。
取出:
resources :static
并替换为
get 'static/index'
get 'static/get_time'