代码之家  ›  专栏  ›  技术社区  ›  nonopolarity

在rubyonrails中,如果你在模型中有错误的关联,那么如果你只触摸它会影响你的应用程序吗model.instance\u变量?

  •  0
  • nonopolarity  · 技术社区  · 14 年前

    has_many , has_one , belongs_to has many ... :through has_many_and_belongs_to 错,但你的程序只触及

    model.instance_variable
    

    model.some_other_model    # or model.some_other_model.some_method_or_variable
    

    你的应用程序会做错什么或者对数据库做什么坏事吗?也就是说,如果您的关联定义错误,那么如果您坚持该模型而不是“交叉引用”另一个模型,它不会做错什么吗?

    1 回复  |  直到 14 年前
        1
  •  1
  •   Robert Speicher    14 年前

    假设 语法 如果正确,则在尝试访问该关联之前,不会抛出关于错误关联的错误。