cancancan 警报和通知消息

cancancan alert and notice messages

来自 Rails 新手的问题。

我有这个:

rescue_from CanCan::AccessDenied do |exception|
 respond_to do |format|
   format.json { head :forbidden, content_type: 'text/html' }
   format.html { redirect_to main_app.root_url, notice: exception.message }
   format.js   { head :forbidden, content_type: 'text/html' }
 end
end

在application_controller.rb

我尝试了几种方法来添加或替换特定情况下的异常消息,例如

  def show
    authorize! :read, @post, :alert => "Please log in to access this page"

    @post = Post.find(params[:id])
    @posts = Post.order("created_at DESC").limit(4).offset(1)
  end

这里我用的是alert,没有提示信息显示。尝试 notice 不会替换来自 Cancan 救援的异常消息。

我也试过这个:

          <% if user_signed_in? %>
            <% if can? :update, @post %>
              <p><%= link_to "modify", edit_post_path(@post.id) %></p>
            <% else %>
              <%= flash[:alert] = 'Please log in to access this page' %>
            <% end %>
          <% end %>

在我的 show.html.erb 页面中,我发现它比上面 post_controller.rb 中的代码更简洁。

在尝试使用 css ot JS 编写一些不错的代码之前,我希望至少看到一些基本的事情发生。问题出在哪里?

当然,我的页面中有这些行:

<p class="notice"><%= notice %></p>
<p class="alert"><%= alert %></p>

正在测试一个新的 rails 项目,以下内容将使您的工作正常进行:

app/controllers/SOMECONTROLLER.rb

def show
  authorize! :show, @post, message: 'Please log in to access this page'
  # and not...
  # authorize! @post, message: 'Please log in to access this page'
  # ...
end