1

我使用 HAML 作为我的标记语言。我的视图只呈现自我视图,没有布局应用程序。如果我用我的方法写

渲染:布局=>真

我去拿

HomesController 中没有默认布局

/home/pavel/.rvm/gems/ruby-1.9.3-p194/gems/kaminari-0.13.0/app/views]>

但是,如果我将 application.html.haml 重命名为 application.html.erb,一切正常。但是脚手架可以毫无问题地生成 HAML。怎么了?

class HomesController < ApplicationController
  def index
    @manufacturers = Manufacturer.all
    #render :layout => 'application'
  end
end

看法

%ul
  - @manufacturers.each do |manufacturer|
    %li      
      = link_to manufacturer.MFA_BRAND, vehiclemodel_url(:id => manufacturer.MFA_ID)

布局

!!!
%html
  %head
    %title Title
    = stylesheet_link_tag    "application"
    = javascript_include_tag "application"
    = csrf_meta_tags
  %body
    - if current_user
      = "Signed in as #{current_user.email}. Not you?"
      = link_to "Sign out", logout_path
    - else
      = link_to "Sign in", new_user_session_path
    %p
      Hello!
    %h4
      =yield
4

2 回答 2

1

我创立了解决方案:在 gemfile 中必须是

宝石'haml-rails'

所以,这里不需要 gem haml,只需要 haml-rails。

于 2012-08-13T12:57:41.710 回答
0

你加了吗

gem 'haml'

到您的 Gemfile?

于 2012-08-12T12:56:59.490 回答