3

キャンプに付属している例のように、キャンプを使用して簡単なブログを作成しようとしています。ビューには、markabyの代わりにhamlを使用したいだけです。_post.html.hamlパーシャルを使用して投稿をレンダリングしたいのですが、間違った方法で行っているのではないかと感じています。

Blog.rb

require 'camping'

Camping.goes :Blog

Blogtitle = "My Blog"

module Blog
  # Path to where you want to store the templates
  set :views, File.dirname(__FILE__) + '/views'
  module Blog::Models
    class Post < Base; belongs_to :user; end
    class Comment < Base; belongs_to :user; end
    class User < Base; end
  end

  module Blog::Controllers
    class Index
      def get
        @posts = Post.find :all
        render :index
      end
    end
  end
end

views / index.html.haml

!!!
%html
%head
%meta{'http-equiv' => 'Content-Type', :content => 'text/html', :charset => 'UTF-8' }/
%title=Blogtitle
%body=render @posts

views / _post.html.haml

%h2=post.title
%p=post.html_body

エラー

NoMethodError at /
undefined method `to_sym' for #<Array:0xb6e426d4>

Ruby  (eval): in lookup, line 12
Web  GET 0.0.0.0/

Traceback (innermost first)

(eval): in lookup
(eval): in render
/home/tony/src/blog/views/index.html.haml: in evaluate_source
%body=render @posts
4

1 に答える 1

6

まず、パーシャルをレンダリングするには、次のような操作を行う必要があります。

render :_post, :locals => { :post => post }

すべての投稿をレンダリングする場合は、ループを使用するだけです。

%body
  - @posts.each do |post|
    = render :_post, :locals => { :post => post }
于 2011-01-08T15:36:59.657 に答える