Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6073485
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:16:33+00:00 2026-05-23T10:16:33+00:00

In my Rails 3 project I have the following code for My controller: class

  • 0

In my Rails 3 project I have the following code for

  1. My controller:

    class TasksController < ApplicationController
    
      def today
        @tasks = Task.today
        @task = Task.new
        respond_to do |format|
          format.html { render :text=> "Sorry , you don't have any task pending today." }
    
          format.html # new.html.erb
          format.xml  { render :xml => @tasks }
        end
      end
    
      def this_week
        @tasks = Task.this_week
        @task = Task.new
        respond_to do |format|
          format.html { render :text => "Sorry , No content for selected period." }
    
          format.html # new.html.erb
          format.xml  { render :xml => @tasks }
        end
      end
    end
    
  2. My model:

    class Task < ActiveRecord::Base
    
      def self.today
        Task.where(:due_date => "Date.today" , :task_status => "open").order("due_date ASC")
      end
    
      def self.this_week
        Task.where(:due_date =>"Time.now.this_week" , :task_status => "open" ).order("due_date ASC")
      end
    end
    

Why it does not displaying anything in the relative view. Please help me.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:16:34+00:00Added an answer on May 23, 2026 at 10:16 am

    When you do Task.where(...), you’re passing in a string to :due_date, rather than a date. Remove the quotation marks:

    Task.where(:due_date => Date.today, :task_status => "open").order("due_date ASC")
    

    For your second one, there is no method called Time.now.this_week. You need to supply a between range instead:

    Task.where("due_date between ? and ?", Date.today.beginning_of_week, Date.today.end_of_week").where(:task_status => "open").order("due_date ASC")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following line of Rails 3 In the project.rb model this works
I have Rails 3 application (running Rails RC1), and I have the following controller:
I have the following models class Project < ActiveRecord::Base has_many :project_members has_many :members, :through
I have the following code in my seeds.rb file in a jruby 1.6.3 rails
I have got an existing Rails project (Rails 2.3.8) and I got following Model
I have a Rails project which I neglected to build tests for (for shame!)
I have a Rails project which has a Postgres database for the actual application
I'm currently using Rcov to get C0 code coverage analysis for a rails project
I have the following problem: In Rails I have two Objects: Categories and Items
Rails 3 app.... I have the following jQuery which is working: $.ajax({ url: '/navigations/sidenav',

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.