1

我想将侧边栏的分类法添加到主页,而不是产品列表,但我的污点不起作用。

Deface::Override.new(
:virtual_path => 'spree/shared/_products',
:name => 'change view',
:replace => "[data-hook='homepage_products']",
:text => "
            <% max_level = Spree::Config[:max_level_in_taxons_menu] || 1 %>
            <nav id='taxonomies2' class='sidebar-item' data-hook>
                <% @taxonomies.each do |taxonomy| %>
                    <% cache [I18n.locale, taxonomy, max_level] do %>
                        <h4 class='taxonomy-root'><%= Spree.t(:shop_by_taxonomy, :taxonomy => taxonomy.name) %></h4>
                        <%= taxons_tree(taxonomy.root, @taxon, max_level) %>
                    <% end %>
                <% end %>
            </nav> ")

我被困在这非常糟糕。

4

2 回答 2

1

您应该将虚拟路径替换为主页索引视图 one: spree/home/index,您尝试替换的元素所在的位置。

另外,我不确定名称是否应该包含空格,请尝试使用“change_view”进行更改。始终确保名称是唯一的,并在添加新的污损覆盖文件时重新启动服务器。

于 2015-05-22T09:33:40.030 回答
1

案例 - 重新启动服务器:每次更改覆盖时都无需重新启动服务器。

是的,如果你设置了,你应该这样做config.deface.enabled = false;通常我们设置它production.rb,在这种情况下你应该预编译覆盖。看到这个了解更多信息


调试技术:如果您不确定部分/模板的路径是否正确,那么您可以使用此技术进行验证

$ rake deface:get_result['spree/shared/_link_to_account']
=> ActionView::MissingTemplate: Missing template

$ rake deface:get_result['spree/shared/_login_bar']
# ---------------- Before ----------------
# <% if spree_current_user %>
#   <li><%= link_to Spree.t(:my_account), spree.account_path %></li>
#   <li><%= link_to Spree.t(:logout), spree.logout_path %></li>
# <% else %>

您甚至可以验证选择器,例如

$ rake deface:test_selector['spree/shared/_login_bar , li']
# Querying 'spree/shared/_login_bar' for 'li'
# ---------------- Match 1 ----------------
# <li>
# <%= link_to 'Dashboard', '/admin' if spree_current_user.is_admin? %> </li>
# ---------------- Match 2 ----------------

此外,如果即使在验证选择器之后错误仍然存​​在,那么您必须确保text要替换的不包含任何syntax/runtime错误。

于 2016-03-17T10:54:05.813 回答