破坏_products数据挂钩

时间:2015-05-21 11:31:43

标签: ruby-on-rails spree deface

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

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> ")

我对此非常不满。

2 个答案:

答案 0 :(得分:1)

您应该使用主页索引视图替换虚拟路径:spree/home/index,其中放置您要替换的元素。

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

答案 1 :(得分:1)

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

是的,你应该设置config.deface.enabled = false;通常我们在production.rb中设置它,在这种情况下,您应该预编译覆盖。 See this for more info

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

$ 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错误。