2013-12-08 170 views
0

我一直在學習一些RoR,並且我剛剛創建了我的第一個Web應用程序,一個基本上是Pinterest副本的照片共享網站。現在我正在嘗試添加更多功能,並希望用戶能夠評論引腳。使用gem/Ruby on Rails添加評論

我使用的Commontator寶石:https://github.com/lml/commontator/blob/master/README.md

唯一的問題是,我不知道在哪裏把<%= commontator_thread(commontable) %> 我show.html.erb文件。我嘗試了很多不同的地方,但由於某種原因,它最終拋出了一個異常。這裏是我的秀html.erb:

<%= link_to 'Back', pins_path %> 

<div class="row"> 
    <div class="col-md-offset-2 col-md-8"> 
    <div class="panel panel-default"> 
     <div class="panel-heading center"> 
     <%= image_tag @pin.image.url(:medium) %> 
     </div> 
     <div class="panel-body"> 
     <p><%= @pin.description %></p> 
     <p><strong><%= @pin.user.name if @pin.user %></strong></p> 




     <%= link_to edit_pin_path(@pin) do %> 
     <span class="glyphicon glyphicon-edit"></span> 
     Edit 


     <% end %> 



     </div> 
    </div> 
    </div> 
</div> 

我非常感謝,如果有人能告訴我我應該把那個鏈接放在哪裏。

謝謝!

+2

它的實際位置應該是靈活的。你確定你正確地遵循了寶石的整個設置嗎?我幾乎可以肯定,它會拋出一個異常,因爲您嘗試調用缺少的方法。 – Severin

回答

1

我認爲你的問題不在於你在哪裏插入show.html.erb。看起來你想要評論的模型是你的Pin模型。如果是這樣,documentation(在部分用法)表示您首先需要在您的引腳模型中添加acts_as_commontable

然後在show.html.erb

<%= commontator_thread(@pin) %> 

commontable是模型的實例acts_as_commontable我以爲這裏是@pin