active_record.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. module ActiveRecord
  2.   class Base
  3.     def self.find_boolean(find_type, field, value=true, *options)
  4.       self.find(find_type,
  5.                 :conditions => ["#{field} = ?", value], *options)
  6.     end
  7.   end
  8. end