我正在为我的网上商店使用 Spree Commerce。我想在结帐过程中更改一些行为,这是在app/models/spree/order/checkout.rb
spree gem 中定义的。所以我checkout_decorator.rb
在我的申请中同时做了一个。
问题是,我的更改没有加载。另一个问题是,模块内的所有内容都在一个方法中,即def self.included(klass)
方法。所以我认为我必须覆盖整个文件,而不仅仅是一种方法。这是我的装饰器的样子:
checkout_decorator.rb
Spree::Order::Checkout.module_eval do
def self.included(klass)
klass.class_eval do
class_attribute :next_event_transitions
class_attribute :previous_states
class_attribute :checkout_flow
class_attribute :checkout_steps
def self.define_state_machine!
# here i want to make some changes
end
# and the other methods are also include here
# for readability, i don't show them here
end
end
end
来自 spree gem的原始文件checkout.rb
如下所示:
module Spree
class Order < ActiveRecord::Base
module Checkout
def self.included(klass)
klass.class_eval do
class_attribute :next_event_transitions
class_attribute :previous_states
class_attribute :checkout_flow
class_attribute :checkout_steps
def self.checkout_flow(&block)
if block_given?
@checkout_flow = block
define_state_machine!
else
@checkout_flow
end
end
def self.define_state_machine!
# some code
end
# and other methods that are not shown here
end
end
end
end
end
所以我的问题是:为什么这不起作用?这module_eval
是正确的方法吗?我试过class_eval
了,但它也不起作用。我该如何解决这个问题?