今天在
rubyinside上看到HAML1.5已经出realse版了,以前没用过
haml
但是看介绍,比rhtml简洁的多,但是试用了下,是不是我插件没按对的原因,还是再工程中没有配好,actionview类一直报错,一直运行不起来,mongrel总报下面截图的错误!
是不是需要在rails的工程中引入haml的包啊,刚开始学rails,可能是自己理解不对
class HelloController < ApplicationController
def hello
@hello = "test haml"
end
end
haml代码如下
#content
.title
%h1= @hello
更正一下,重新写了haml的代码,我觉得rails的社区越来越充实了
class HelloController < ApplicationController
def hello
@title = "hello haml"
@body = "This is Haml Body"
end
end
haml代码如下
%html
%head
%title=@title
%body
%h1=@body
%p Sign my guestbook