3

:original キーワードはSpree Deface::Override何に使用されますか? 私は最初からではないアプリに取り組んでおり、次のコードに感銘を受けました。

Deface::Override.new(:virtual_path => "....",
                 :name => "admin_user_acct_sales_row",

                 :insert_bottom => "[data-hook='admin_users_index_rows'], #admin_users_index_rows[data-hook]",

                 :partial => "spree/admin/users/...",

                 :original => "90406d8cbc733e601bb9717b4b5711e43fe181a3",

                 :disabled => false)

ここ:originalは何の略?

ありがとう。

4

1 に答える 1

5

私が見つけた次のspree/deface README

:original - String containing original markup that is being overridden.
            If supplied Deface will log when the original markup changes, 
            which helps highlight overrides that need attention when 
            upgrading versions of the source application. Only really
            warranted for :replace overrides. NB: All whitespace is stripped
            before comparison.

完全な README については、https://github.com/spree/defaceにアクセスしてください。

それが役立つことを願っています。ありがとう。

于 2013-07-31T07:39:51.213 に答える