在link_to_if

时间:2018-02-09 21:38:12

标签: ruby-on-rails

这是我的link_to_if

 <%=link_to_if(post.status!='approved', "Edit", edit_post_path(post) , id: "edit_#{post.id}") %>

我想向其添加:notice "NOT EDITABLE",但我收到错误

SyntaxError in PostsController#index

我的问题是

我怎么能这样做,所以当我点击禁用链接时,我可以看到通知,是否可能?

 <%=link_to_if(post.status!='approved', "Edit", edit_post_path(post) , id: "edit_#{post.id}", notice: 'NOT EDITABLE') %>

注意:在我的情况下,链接在获得批准后被禁用,但是当我点击它时,没有消息显示让用户知道无法编辑帖子。

0 个答案:

没有答案