草庐IT

destroy_at

全部标签

ruby-on-rails - 将日期与 rails3 中的日期时间 Created_at 进行比较

所以我正在尝试做这样的事情:today=Date.today-1todaysReport=Report.where(:created_at=>today).find_by_user_id(user.id)问题是created_at是一个日期时间,所以它找不到任何匹配项。有什么建议吗? 最佳答案 你可能想要这样的东西:yesterday=Time.now-1.dayuser=User.find(user_id)todaysReport=user.reports.where(["created_at>=?ANDcreated_at

ruby - Nokogiri 中的 .at_css 和 .css 有什么区别?

我找不到明确、直接的答案,但是Nokogiri中的.at_css和.css有什么区别? 最佳答案 Nokogiri具有搜索和查找所有内容以及查找第一个方法的同义词。search,/,xpath和cssall搜索每次出现的访问器并返回NodeSet.at,%,at_xpath和at_css搜索第一次出现并返回Node.这就是为什么文档说它们等同于说search('//some/path').first或css('somepath').first. 关于ruby-Nokogiri中的.at_

ruby-on-rails - rails : Ensure only one boolean field is set to true at a time

我有一个Logo模型,它的字段名称为:字符串,默认为bool值。我希望true值是唯一的,以便一次只能将数据库中的一项设置为true。如何在我的Controller中设置更新和新操作以将Logo的所有其余值设置为false?假设我有以下设置在我的数据库中模特标志名称:字符串|默认值:bool值|项目1|是的|项目2|假|第3项|假|如果我将Item2默认值更改为true,我希望它遍历所有Logo并将其余Logo设置为false,因此一次只有一个为true,所以它看起来像这样。名称:字符串|默认值:bool值|项目1|假|项目2|是的|第3项|假|提前感谢您的帮助。

ruby-on-rails - Rails - ActiveRecord 使用 :dependent => :destroy on condition

根据条件销毁对象的所有依赖项的最佳/DRY方法是什么。?例如:classWorker:destroyhas_many:coworkers,:dependent=>:destroyhas_many:company_credit_cards,:dependent=>:destroyend条件是销毁:ifself.is_fired?#Destroydependantsrecordselse#DonotDestroyrecordsend有没有办法在:dependent条件下使用Proc。我已经找到了单独销毁依赖项的方法,但这对于进一步的关联来说不是DRY和灵活的,注意:我编造了例子..不是实际

ruby-on-rails - Rails ActiveRecord:PG::错误:错误:列引用 "created_at"不明确

我正在努力解决对象中的错误,但完全不确定问题出在哪里。这是模型的样子:classCar:car_colorsendclassCarColor:car_colorsend这里是查询:@cars=Car.all(:joins=>:car_colors,:conditions=>{:car_colors=>{:color_id=>params[:id_number]}},:order=>"cars.created_atDESC")错误输出:PG::Error:ERROR:columnreference"created_at"isambiguousLINE1:...d"WHERE"car_co

ruby-on-rails - 如何测试依赖: :destroy with RSpec?

我想测试我的User模型关联has_many:projects,dependent::destroy现在已经走了这么远:it"destroysdependentprojects"douser=FactoryGirl.build(:user)project=FactoryGirl.build(:project)user.projects但这给出了一个错误:Failure/Error:expect(Project.count).tochange(-1)ArgumentError:`change`requireseitheranobjectandmessage(`change(obj,:ms

ruby-on-rails - rails : how to show user's "last seen at" time?

我正在使用存储current_sign_in_at和last_sign_in_at日期时间的设备。但是假设用户在一个月前登录但最后一次查看页面是在5分钟前?有什么方法可以显示(“5分钟前用户最后一次出现”)。 最佳答案 这个怎么样:创建迁移以向用户添加新字段以存储用户最后一次出现的日期和时间:railsgmigrationadd_last_seen_at_to_userslast_seen_at:datetime向您的应用程序Controller添加一个操作前回调:before_action:set_last_seen_at,if:

ruby-on-rails - rails : How to use dependent: :destroy in rails?

我有2个模型,如下所述。classEmpGroup和classEmpGroupMember现在的问题是,每当我试图摧毁一个组时,我都会收到如下错误。PG::ForeignKeyViolation:ERROR:updateordeleteontable"emp_groups"violatesforeignkeyconstraint"fk_rails_bd68440021"ontable"emp_group_members"DETAIL:Key(id)=(1)isstillreferencedfromtable"emp_group_members".我错过了什么?

ruby-on-rails - rails 验证 : :allow_nil and :inclusion both needed at the same time

通常“种类”字段应允许留空。但如果不为空,则该值应包含在['a','b']validates_inclusion_of:kind,:in=>['a','b'],:allow_nil=>true代码不起作用? 最佳答案 在Rails5中,您可以在包含block的外部或内部使用allow_blank:true:validates:kind,inclusion:{in:['a','b'],allow_blank:true}或validates:kind,inclusion:{in:['a','b']},allow_blank:true提示

ruby-on-rails - 如何在不触及 updated_at 属性的情况下更新单个属性?

我怎样才能做到这一点?试图创建2个方法,称为defdisable_timestampsActiveRecord::Base.record_timestamps=falseenddefenable_timestampsActiveRecord::Base.record_timestamps=trueend和更新方法本身:defincrement_pagehitupdate_attribute(:pagehit,pagehit+1)end使用如下回调打开和关闭时间戳:before_update:disable_timestamps,:only=>:increment_pagehitafte