Rails 为夹具中的关联提供了标签引用,如下所示:

### in pirates.yml

  reginald:
    name: Reginald the Pirate
    monkey: george

### in monkeys.yml

  george:
    name: George the Monkey
    pirate: reginald

这对于未命名空间的模型非常有效,但我使用的是命名空间,因此 Rails 感到困惑,并希望插入标签而不是标签引用。

任何解决方法或修复已知?

最佳答案

Fixtures.identify 似乎是唯一的解决方案,不是很漂亮,但比 ids 好。

### in pirates.yml

  reginald:
    name: Reginald the Pirate
    monkey_id: <%= Fixtures.identify(:george) %>


### in monkeys.yml

  george:
    name: George the Monkey
    pirate_id: <%= Fixtures.identify(:reginald) %>

关于ruby-on-rails-3 - 关联的标签引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6738737/

10-10 06:14