特定の週のデータベース内のすべてのエントリを表示するページがあります。データベースの各エントリには、エントリの日付を含む :entrydate フィールドがあります。
/config/routes.rb で:
match "reports/*date" => "reports#index", :defaults => { :date => DateTime.now.strftime('%m/%d/%Y') }
/app/controllers/reports_controller.rb:
def index
@reports = Report.where(:entrydate => Date.strptime(params[:date], '%m/%d/%Y').beginning_of_week..Date.strptime(params[:date], '%m/%d/%Y').end_of_week)
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @reports }
format.js
end
end
ただし、ページ localhost:3000/reports を実行しようとすると、エラーが発生します。
can't dup NilClass
/app/jruby-1.6.5.1/lib/ruby/1.8/date/format.rb:599:in `_strptime'
/app/jruby-1.6.5.1/lib/ruby/1.8/date.rb:979:in `strptime'
app/controllers/reports_controller.rb:7:in `index'
localhost:3000/reports/10/29/2012 などの日付を入力すると問題なく動作します。