Rails:Scoped关联导致错误

时间:2017-07-26 06:12:01

标签: ruby-on-rails ruby scope associations ruby-on-rails-5

在模型中,我有以下作用域关联:

customer.rb:38

has_many :payment_informations, class_name: 'Customer::PaymentInformation', dependent: :destroy, -> { order(position: :asc) }

错误:

  

语法错误,意外'\ n',期待=>

-

我在这里做错了什么?只有在确定范围时才会出现错误。

2 个答案:

答案 0 :(得分:1)

尝试

\n

答案 1 :(得分:1)

has_many(name, scope = nil, options = {}, &extension)

这是has_many预期的订单。