我在我的 ruby on rails 应用程序中运行 Spree,并且我正在使用 spree_fancy 主题(如果重要的话)。这是它的样子:
如您所见,有这样的文字“欢迎来到我们的神奇商店!选择任何你喜欢的东西,我们将把它运送到任何地方!”
我想修改那里显示的文本并添加一些其他标记。
我从github上下载了spree源代码,基本上有一个home controller在调用route url的时候加载:
#frontend/config/routes.rb
root :to => 'home#index'
#frontend/controllers/spree/home_controller.rb
def index
@searcher = Spree::Config.searcher_class.new(params)
@searcher.current_user = try_spree_current_user
@searcher.current_currency = current_currency
@products = @searcher.retrieve_products
end
#views/spree/home/index.html.erb
<%= render :partial => 'spree/shared/products', :locals => { :products => @products } %>
#spree/shared/_products.html.erb
...
基本上,我遵循了整个调用顺序,但在任何地方都找不到包含此文本的视图(我非常怀疑它是否存储在数据库中)。
包含此主页信息的视图在哪里?