RailsCasts中文版,#4 Move Find into Model 将查询方法从控制器上移至模型

这个例子是对Task调用find命令进行查询操作,查询所有未完成的任务并按照创建时间降序排列。如下所示:

class TaskController < ApplicationController
  def index
    @tasks = Task.find_all_by_complete(:false, :order => "created_at DESC")
  end
end

如果控制器中有好几个地方都需要用到这个查询,就不得不各处都按照上面的方式复制一份。我们可以把这种方式改进为,将方法封装到模型中。那样的话,再用到的地方我们只需按照下面的方式进行调用

@tasks = Task.find_incomplete

看看在模型中添加的这个方法,请注意他应该是类方法,所以别忘了在方法名前添加.self

class Task < ActiveRecord::Base
  belongs_to :project

  def self.find_incomplete
    find_all_by_complete(:false, :order => "created_at DESC")
  end
end

命令中不需要指明调用哪个Task了,因为查找的作用域在类内部。增加了方法后,我们就可以调用封装后的Task.find_incomplete方法代替之前的写法。甚至在级联查询的时候依然生效,比如查询在Project下的所有未完成任务:

class ProjectsController < ApplicationController
  def show
    @project = Project.find(params[:id])
    @tasks = @project.tasks.find_incomplete
  end
end

作者授权:You are welcome to post the translated text on your blog as well if the episode is free(not Pro). I just ask that you post a link back to the original episode on railscasts.com.

原文链接:http://railscasts.com/episodes/4-move-find-into-model

posted on 2012-11-20 07:51  边晓宇  阅读(985)  评论(0编辑  收藏  举报