我正在尝试使用预填充的值填充我的帐单地址。我写了一个污点:
Deface::Override.new(:virtual_path => 'spree/address/_form',
:name => 'prepopulate_billing_address',
:set_attributes => 'p#order_bill_address_attributes_phone',
:attributes => {:value => "122344"}
)
并且内容属于app/overrides/autofill_billing_address.rb
我正在尝试替换此视图 Spree 表单视图
有上述污损,但污损日志说
Deface: 'prepopulate_billing_address' matched 0 times with 'p#order_bill_address_attributes_phone'
正在运行的 spree 实例的 idorder_bill_address_attributes_phone
被包裹在<p>
. 任何的想法?谢谢您的帮助!