- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个模型下载
,带有一个表下载
。 downloads
有一个名为 ip_address
的字段,它将 ip 地址存储为整数。我想设置一个 IpAddress
模型,但没有 ip_addresses 表,所以我可以做类似的事情
Download.find(1).ip_address.to_s # '127.0.0.1'
Download.find(1).ip_address.to_i # 2130706433
Download.find(1).ip_address.downloads # SELECT * FROM downloads WHERE ip_address='2130706433'
IpAddress.find(2130706433).downloads # SELECT * FROM downloads WHERE ip_address='2130706433'
我希望它表现得像:
class Download < ActiveRecord::Base
belongs_to :ip_address, :foreign_key => :ip_address
end
class IpAddress < ActiveRecord::Base
set_primary_key :ip_address
has_many :downloads, :foreign_key => :ip_address
end
但没有无用的 ip 地址表。
这可能吗?
编辑
我发现ruby已经有了一个IPAddr class .
所以我这样做了:
require 'ipaddr'
class Download < ActiveRecord::Base
attr_accessible :ip, ...
def ip
@ip ||= IPAddr.new(read_attribute(:ip), Socket::AF_INET)
end
def ip=(addr)
@ip = IPAddr.new(addr, Socket::AF_INET)
write_attribute(:ip, @ip.to_i)
end
def self.for_ip(addr)
where(:ip => IPAddr.new(addr, Socket::AF_INET).to_i)
end
end
然后我可以做很多很酷的事情
Download.new(:ip => '127.0.0.1').save
Download.for_ip('127.0.0.1').first.ip.to_i # 2130706433
最佳答案
belongs_to
实际上是为了指定两个表中对象之间的关联。但你是对的,除非你需要存储其他相关数据,否则将 IP 地址存储在表中是毫无用处的。
但是,您可以使用 scopes去完成你想要的。你可以在你的下载模型中有这样的东西:
class Download < ActiveRecord::Base
scope :for_ip, lambda { |x| where(:ip_address => x) }
end
然后你会打电话
Download.for_ip(2130706433)
获取该 IP 的下载列表。
你也可以添加一个类方法:
class Download < ActiveRecord::Base
def self.for_ip(x)
where(:ip_address => x)
end
end
如果您想从字符串转换为数字 IP 地址,这可能会很方便。
而且,如果您想要一个 IPAddress 类,您可以添加如下方法:
class IPAddress
def initialize(ip)
#presumably do some stuff here
@ip = ip
end
def downloads
Download.for_ip(@ip)
end
end
关于ruby-on-rails - belongs_to 没有额外表的关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11903989/
我使用的是 Ruby on Rails 4.2。现在使用关系并尝试在 ContosoUniversity of .net MVC 示例中所示的 Instructor 和 Office_Assignme
我有以下关联 class Picture < ActiveRecord::Base belongs_to :user end class User < ActiveRecord::Base h
我有 Category 和 belongs_to 类别的 Product。设置: mix phoenix.new shop cd shop mix ecto.create mix phoenix.ge
我的应用程序中有相当多的 belongs_to 关联,其中一些是可选的(即关联可以为 nil),一些是强制性的(关联必须是有效的父记录。 我最初的方法是使用我自己的验证方法来验证给定的 id(这里是强
我有以下事件记录类 class Car < ActiveRecord::Base belongs_to :owner end 在我尝试这个的代码中 Car.first.owner 它给我错误“未定
visits 有很多 visitsTasks 属于 tasks。 我正在查看 visits 表中的特定行 (visitID),并希望找到所有已完成的任务。在这些任务中,我想访问 path 和 mode
以前有人问过类似的问题,但我就是不明白。 所以我有 Model_A 和 Model_B。模型_B 属于 模型_A。我想做的是,当我创建 Model_A 时,自动调用 Model B 的 create
我有一个模型 class Survey :true end def update_saved_settings!(person=nil) self.responses_saved_d
我有 3 张属于同一批货的发票。创建的第一张发票始终是装运的主发票。 Invoice id shipment_id 21 55 # This is the main invoice 88
我有一个模型下载,带有一个表下载。 downloads 有一个名为 ip_address 的字段,它将 ip 地址存储为整数。我想设置一个 IpAddress 模型,但没有 ip_addresses
我有这个问题: 我有这段代码: 用户.rb: class User Name: Content: | 我在这里错过了什么?我无法访问 full_name 方法,但我不
所以我正在做一个应用程序,其中有一个“游戏”模型,该模型具有来自 4 个不同用户的 4 个属性。其中一个属性是 player_id,另外 3 个是用户 uid(facebook 给出的字符串 id)。
我有两个模型:Users 和 Posts。按照我的设置方式,帖子属于所有者(即用户)并且还有许多参与者(即用户)。在我的用户模型中,我想确保 owner 永远不属于 post。我在前端完成了此操作,但
用户.rb enum gender: [:Male, :Female] belongs_to :qualification 资格.rb has_many :users 当我查询时 User.all.g
用户有很多帖子。 class User has_many :posts end 帖子属于用户。 class Post belongs_to :user end 我正在尝试查找由管理员的用户发布
我正在使用两种不同的模型Person 和Organization。在许多其他属性中,Person 和 Organization 都可以是 Contractor。如果我只使用 Person 模型并想存储
拥有这些示例模型: class Post < ActiveRecord::Base belongs_to :category end class Category < ActiveRecord::
我有一个表格,学生可以在其中注册类(class)。当用户提交表单时,他就注册了类(class)并保存了他的付款信息。换句话说,一个 Enrollment对象被创建,Student对象已更新...除了我
我有 2 个表叫 Member和 MemberResume . MemberResume引用 Member在 key 上memberid . 在 MemberResume模型的关系是这样设置的: 'm
我有一个标记模型,具有与标记和可标记项目的多态关联。可标记项目都与 feed_item (has_one :feed_item) 有关联。我想将标记与 feed_item 相关联,即在 tagging
我是一名优秀的程序员,十分优秀!