gpt4 book ai didi

ruby-on-rails - ActiveRecord::Enum - PG::InvalidTextRepresentation:错误:整数输入语法无效:

转载 作者:行者123 更新时间:2023-12-02 03:58:09 27 4
gpt4 key购买 nike

我遇到了一个奇怪的错误,希望有人能给我指出正确的方向。我有一个名为 Organizations 的模型和一个名为 department 的属性,请参阅下面的架构摘录:

t.integer  "department",  default: 0

在我的模型内部已经定义了此属性的枚举,因为我正在使用 ActiveRecord::Enum ,如下所示:

enum department: [:conferences, :design_teams, :services, :clubs, :events, :communications]

但是当我查询时,JobPosting.joins(job: :organization).where(organizations: { Department: 'conferences' }) 我收到一条错误,内容如下:

PG::InvalidTextRepresentation:错误:整数输入语法无效:“ session ”

仅供引用:组织有_许多职位,职位有_许多职位发布。

但是当我查询Organization.where(department: 'conferences')时,它起作用了。

任何帮助将不胜感激。

最佳答案

这适用于 ror5。

JobPosting.joins(job: :organization).where(organizations: 
{ department: Organization.departments['conferences'] })

我什至不确定enum是否是available在 ror3 中。

关于ruby-on-rails - ActiveRecord::Enum - PG::InvalidTextRepresentation:错误:整数输入语法无效:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43081716/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com