想我得到的所有用戶通過@users = User.all
,然後在我的部分,我有一些循環顯示導軌整個實例變量視圖
%ul
= users.each do |index|
= content_tag(:li,index.name)
的問題是,我得到這個輸出
<ul>
<li>
Administrator //correct user name
<li>
[#<User id: 1, email: "[email protected]", encrypted_password: "$2a...",...;]
</ul>
爲什麼顯示整個對象?
非常感謝你! – user1611830
@MrYoshiji對不起,複製粘貼問題;) – Newben
@MrYoshiji對不起,我想編輯我的,我把東西放在裏面。非常抱歉 ! – Newben