0
我不完全知道我在做什麼錯在這裏,但我的索引動作直接從數據庫中的每個記錄下返回一串信息:導軌 - Index操作顯示數據庫記錄下後
First Post!!!
Hello. This is my first blog post
[#<Post id: 1, user_id: nil, title: "First Post!!!",
content: "Hello. This is my first blog post", created_at: "2016-02-26 20:51:57",
updated_at: "2016-02-26 20:51:57">]
的index.html
= for p in @posts
%h1
= p.title
%p
= p.content
在@ posts'中將'= for p改爲' - for @in @ posts' – BroiSatse
謝謝!我知道我正在做一些愚蠢的事情...... –
btw,建議在ruby中使用迭代器而不是'for'。 '@ posts.each do | p |'是可取的 –