我有一个名为“item”的对象,它有一个可以链接到任何 URL 的“title”。我使用以下代码允许使用 Best in Place gem 就地编辑标题。编辑部分工作正常,但是当从输入框中移除焦点时,链接丢失。
<%= best_in_place item, :title,
:display_with => :link_to,
:activator => "#edit-#{item.id}",
:helper_options => item.url %>
我感觉我没有正确设置“helper_options”的值。
如何编辑上面的代码,以便在用户更改标题后使用更新的文本恢复链接?我在Best in Place github 站点或其他任何地方都找不到这样的例子。