- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个 has_many
与一个模型的关联。一个关联正常工作并触发查询,另一个仅返回 nil
.
我正在使用只读远程 postgres 数据库。
以下是模型:
# stake_address.rb
class StakeAddress < ApplicationRecord
self.table_name = 'stake_address'
has_many :rewards, foreign_key: :addr_id
has_many :delegations, foreign_key: :addr_id
has_many :utxo_views, foreign_key: :stake_address_id
end
# pool_hash.rb
class PoolHash < ApplicationRecord
self.table_name = 'pool_hash'
has_many :rewards, foreign_key: :pool_id
has_many :delegations, foreign_key: :pool_hash_id
end
# delegation.rb
class Delegation < ApplicationRecord
self.table_name = 'delegation'
belongs_to :stake_address
belongs_to :pool_hash
end
这是我测试关联时发生的情况:
$ rails c
Running via Spring preloader in process 68412
Loading development environment (Rails 6.0.3.4)
2.6.1 :001 > d = Delegation.all.first
Delegation Load (2.3ms) SELECT "delegation".* FROM "delegation" ORDER BY "delegation"."id" ASC LIMIT $1 [["LIMIT", 1]]
=> #<Delegation id: 1, addr_id: 61, cert_index: 1, pool_hash_id: 1, active_epoch_no: 210, tx_id: 2424635>
2.6.1 :002 > d.stake_address
=> nil
2.6.1 :003 > d.pool_hash
PoolHash Load (2.3ms) SELECT "pool_hash".* FROM "pool_hash" WHERE "pool_hash"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]
=> #<PoolHash id: 1, hash_raw: "\x158\x06\xDB\xCD\x13M\xDE\xE6\x9A\x8CR\x04\xE3\x8A\xC8\x04H\xF6#B\xF8\xC2<\xFEK~\xDF", view: "pool1z5uqdk7dzdxaae5633fqfcu2eqzy3a3rgtuvy087fdld7...">
d.stake_address
应该触发查询,因为它发生在
d.pool_hash
相反什么也没有发生,只有
nil
被退回。
cexplorer=# \d+ delegation
Table "public.delegation"
Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
-----------------+---------+-----------+----------+----------------------------------------+---------+--------------+-------------
id | bigint | | not null | nextval('delegation_id_seq'::regclass) | plain | |
addr_id | bigint | | not null | | plain | |
cert_index | integer | | not null | | plain | |
pool_hash_id | bigint | | not null | | plain | |
active_epoch_no | bigint | | not null | | plain | |
tx_id | bigint | | not null | | plain | |
Indexes:
"delegation_pkey" PRIMARY KEY, btree (id)
"unique_delegation" UNIQUE CONSTRAINT, btree (addr_id, pool_hash_id, tx_id)
Foreign-key constraints:
"delegation_addr_id_fkey" FOREIGN KEY (addr_id) REFERENCES stake_address(id)
"delegation_pool_hash_id_fkey" FOREIGN KEY (pool_hash_id) REFERENCES pool_hash(id)
"delegation_tx_id_fkey" FOREIGN KEY (tx_id) REFERENCES tx(id)
cexplorer=# \d+ stake_address
Table "public.stake_address"
Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
------------------+-------------------+-----------+----------+-------------------------------------------+----------+--------------+-------------
id | bigint | | not null | nextval('stake_address_id_seq'::regclass) | plain | |
hash_raw | addr29type | | not null | | extended | |
view | character varying | | not null | | extended | |
registered_tx_id | bigint | | not null | | plain | |
Indexes:
"stake_address_pkey" PRIMARY KEY, btree (id)
"unique_stake_address" UNIQUE CONSTRAINT, btree (hash_raw)
Foreign-key constraints:
"stake_address_registered_tx_id_fkey" FOREIGN KEY (registered_tx_id) REFERENCES tx(id)
Referenced by:
TABLE "delegation" CONSTRAINT "delegation_addr_id_fkey" FOREIGN KEY (addr_id) REFERENCES stake_address(id)
TABLE "epoch_stake" CONSTRAINT "epoch_stake_addr_id_fkey" FOREIGN KEY (addr_id) REFERENCES stake_address(id)
TABLE "reserve" CONSTRAINT "reserve_addr_id_fkey" FOREIGN KEY (addr_id) REFERENCES stake_address(id)
TABLE "reward" CONSTRAINT "reward_addr_id_fkey" FOREIGN KEY (addr_id) REFERENCES stake_address(id)
TABLE "stake_deregistration" CONSTRAINT "stake_deregistration_addr_id_fkey" FOREIGN KEY (addr_id) REFERENCES stake_address(id)
TABLE "stake_registration" CONSTRAINT "stake_registration_addr_id_fkey" FOREIGN KEY (addr_id) REFERENCES stake_address(id)
TABLE "treasury" CONSTRAINT "treasury_addr_id_fkey" FOREIGN KEY (addr_id) REFERENCES stake_address(id)
TABLE "tx_out" CONSTRAINT "tx_out_stake_address_id_fkey" FOREIGN KEY (stake_address_id) REFERENCES stake_address(id)
TABLE "withdrawal" CONSTRAINT "withdrawal_addr_id_fkey" FOREIGN KEY (addr_id) REFERENCES stake_address(id)
cexplorer=# \d+ pool_hash
Table "public.pool_hash"
Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
----------+-------------------+-----------+----------+---------------------------------------+----------+--------------+-------------
id | bigint | | not null | nextval('pool_hash_id_seq'::regclass) | plain | |
hash_raw | hash28type | | not null | | extended | |
view | character varying | | not null | | extended | |
Indexes:
"pool_hash_pkey" PRIMARY KEY, btree (id)
"unique_pool_hash" UNIQUE CONSTRAINT, btree (hash_raw)
Referenced by:
TABLE "delegation" CONSTRAINT "delegation_pool_hash_id_fkey" FOREIGN KEY (pool_hash_id) REFERENCES pool_hash(id)
TABLE "epoch_stake" CONSTRAINT "epoch_stake_pool_id_fkey" FOREIGN KEY (pool_id) REFERENCES pool_hash(id)
TABLE "pool_owner" CONSTRAINT "pool_owner_pool_hash_id_fkey" FOREIGN KEY (pool_hash_id) REFERENCES pool_hash(id)
TABLE "pool_retire" CONSTRAINT "pool_retire_hash_id_fkey" FOREIGN KEY (hash_id) REFERENCES pool_hash(id)
TABLE "pool_update" CONSTRAINT "pool_update_hash_id_fkey" FOREIGN KEY (hash_id) REFERENCES pool_hash(id)
TABLE "reward" CONSTRAINT "reward_pool_id_fkey" FOREIGN KEY (pool_id) REFERENCES pool_hash(id)
TABLE "slot_leader" CONSTRAINT "slot_leader_pool_hash_id_fkey" FOREIGN KEY (pool_hash_id) REFERENCES pool_hash(id)
最佳答案
问题似乎与您的 Delegation
有关 table 。它没有 stake_address_id
列,而外键位于 addr_id
.所以尝试:
class Delegation < ApplicationRecord
self.table_name = 'delegation'
belongs_to :stake_address, foreign_key: "addr_id"
belongs_to :pool_hash
end
关于ruby-on-rails - Rails 协会不触发 Postgres 查询并返回 Nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65529253/
在检查对象是否为 nil 时,有人使用 1: if (object == nil) { //... } 有人用 2: if (nil == object) { //... } 1和2有
func InsertApData(w http.ResponseWriter, r *http.Request) { decoder := json.NewDecoder(r.Body)
为什么 nil.to_s 返回 "",而 nil.inspect 返回 "nil"(当显然 .inspect 使用 .to_s 方法) 最佳答案 "inspect" method of the Obj
运行时间 https://play.golang.org/p/sl12vfS9vP package main import "fmt" func main() { err := run()
我可以将三元条件运算符用于 if {} else {} 语句,如下所示:a ? x : y,还是问题?回答 1 : 回答 2。 是否可以使用这种格式来检查,而不是 a 是 true 还是 false,
无法弄清楚这里出了什么问题。按照设计设置说明,用谷歌搜索我能想到的一切,仍然没有运气。 undefined method `email' for # Extracted source (around
今天写一些 rspec 时,我遇到了一些意外的行为,将日期(和时间)实例与 nil 进行比较。这是一个使用原始 ruby 的示例(没有 Rails 或其他库): user@MacBook-Work
我将数据类型的非零值分配给非可选属性,然后将其分配给可选属性,最后用所述数据实例化图像。当可选项通过 if-let 子句时,它的 block 执行,抛出错误: Fatal error: Unexpec
swift 5.1 。 考虑以下。 let x: Any? = nil let y: Any = x print("x \(x)") // x nil pri
请耐心听我解释这一点, 我正在创建一个聊天室,用户可以在其中上传照片供其他人查看。当用户点击图标时,他们可以将照片上传到我的 Firebase 数据库(这已成功完成,我已经对此进行了测试)。照片的 U
我的 xCode 5.0 目前遇到一个奇怪的问题:一个对象在控制台中似乎为 nil,但同时它可以通过代码访问。 图 1:对象似乎为零 图2:NSLog(@"%@", imgDownloader) 的输
我有一个实现协议(protocol)的类,以便添加 3 个变量。我专门设置了图像变量,调试器显示该变量存在,但是在我打印它时在代码中显示为 nil,我的 if let 语句也认为该变量为 nil。 @
这个问题在这里已经有了答案: Swift 2 ( executeFetchRequest ) : error handling (5 个答案) 关闭 7 年前。 开始在 SWIFT 中学习编码,每次
两者 (not 'nil) 和 (not nil) 求值为T,那么'nil和nil有什么区别吗?那么 ''nil 呢?如果 ''nil 的计算结果为 'nil,那么 ''nil 是否也应该计算为 ni
(if '(nil nil) 'print-true 'print-false) (if '(nil) 'print-true 'print-false) 在上面的代码
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: obj.nil? vs. obj == nil 我发现了一个问题 - == nil 和 nil 哪个更好?
此代码段抛出异常: x = nil jsoned = x.to_json puts 'x.to_json=' + jsoned.inspect puts 'back=' + JSON.parse(js
基本上我有一个对象想要传递给前端。我在后端记录了它,它不是空的,但是在前端,当我提醒它时,它变成了空。 ... presentation := &presentationStruct { Obje
我创建了一个自定义错误类型来包装错误,以便在 Golang 中更轻松地进行调试。当有错误要打印时它可以工作,但现在它会引起 panic 。 Demo type Error struct { E
写一个符合我当前问题的标题有点难..我有一个 main() 函数,它使用另一个包 (database_sql) 中的函数。该函数初始化一个全局变量 sql.DB*。初始化后,变量不为nil,但是对于其
我是一名优秀的程序员,十分优秀!