我尝试在 RailsCast 147 Sortable Lists和302 In-Place Editing中实现这些功能,但是在遵循了每一步之后,Ryan 屏幕上显示的效果与我的不同。
在302 In-Place Editing的情况下,点击所谓的 in-place-editing-enabled 文本没有任何效果!
我有简单的代码来实现views/users/show.html.erb中的best_in_place
<h1>
<%= gravatar_for @user %>
<%= @user.name %>
</h1>
<% firstname = @user.name.split(" ")[0] %>
<p>
<%= best_in_place @user, :email %>
</p>
在147 Sortable Lists的情况下,该行<%= sortable_element("faq") %>
给了我一个undefined method 'sortable_element'
错误。
请帮忙!