我正在使用Bootstrap,其中div class="alert notice"
有一堆类用于发出各种通知消息。
我还有一个针对评论的AJAX销毁操作,我已经添加了cancan
授权。当我尝试删除current_user
无权访问的评论时,这是不正确的。这是正确的。
但我想要发生的是弹出一个错误信息,在Bootstrap风格的d = 10秒内然后消失。
这是destroy
CommentsController.rb
操作
def destroy
respond_to do |format|
if @comment.destroy
format.html { redirect_to root_url, notice: 'Comment was successfully deleted.' }
format.json { head :no_content }
format.js { render :layout => false }
else
format.json { render json: @comment.errors, status: :unprocessable_entity }
end
end
end
我在同一控制器中的私有方法中设置了@comment
:
private
def set_comment
@comment = current_user.comments.find(params[:id])
end
这是我的comments/destroy.js.erb
$('.delete_comment').bind('ajax:success', function() {
$(this).closest('div#new_comment').fadeOut();
});
但这不会影响未经授权的访问。
在我的ability.rb
中,我有这个:
can :manage, Comment, user_id: user.id
在我的日志中,当我尝试删除无法访问的评论时,我会在日志中看到此消息:
Started DELETE "/comments/5" for 127.0.0.1 at 2014-10-16 02:56:53 -0500
Processing by CommentsController#destroy as JS
Parameters: {"id"=>"5"}
User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
FamilyTree Load (0.2ms) SELECT "family_trees".* FROM "family_trees" WHERE "family_trees"."user_id" = $1 LIMIT 1 [["user_id", 1]]
ReadMark Load (0.1ms) SELECT "read_marks".* FROM "read_marks" WHERE "read_marks"."user_id" = $1 AND "read_marks"."readable_type" = 'PublicActivity::ORM::ActiveRecord::Activity' AND "read_marks"."readable_id" IS NULL ORDER BY "read_marks"."id" ASC LIMIT 1 [["user_id", 1]]
Comment Load (0.3ms) SELECT "comments".* FROM "comments" WHERE "comments"."user_id" = $1 AND "comments"."id" = $2 LIMIT 1 [["user_id", 1], ["id", 5]]
Completed 404 Not Found in 8ms
ActiveRecord::RecordNotFound - Couldn't find Comment with 'id'=5 [WHERE "comments"."user_id" = $1]:
哪个是完美的。
我想要做的就是在几秒钟内消失的Bootstrap警报中显示一个适当的错误。
我如何做到这一点?
答案 0 :(得分:2)
在comments/destroy.js.erb
文件中添加以下代码:
<% if defined?(@error) %>
$('.alert.notice').text("<%= @error %>");
$('.alert.notice').show();
setTimeout(function() {
$('.alert.notice').fadeOut('fast');
}, 5000);
<% end %>
更改set_comment
方法以使用find_by
以避免获得RecordNotFound
例外:
def set_comment
@comment = current_user.comments.find_by(id:params[:id])
end
然后在您的控制器中,您可以按如下方式修改销毁操作:
def destroy
respond_to do |format|
if @comment.present?
@comment.destroy
format.html { redirect_to root_url, notice: 'Comment was successfully deleted.' }
format.json { head :no_content }
format.js { render :layout => false }
else
format.html { redirect_to root_url, notice: 'unauthorized access error.' }
format.js { @error = 'unauthorized access error' }
end
end
端
答案 1 :(得分:1)
首先,如果你使用cancan
- 只需使用cancan:
#app/controllers/comments_controller.rb
class CommentsController < ApplicationController
load_and_authorize_resource #this will set @comment by your ability and authorize action
...
end
这会引发CanCan::AccessDenied
而不是ActiveRecord::RecordNotFound
错误。
让我们通过rescue_from
在ApplicationController
中抓住它
#app/controllers/application_controller.rb
class ApplicationController < ActionController::Base
...
rescue_from CanCan::AccessDenied do |exception|
@error_message = exception.message
respond_to do |f|
f.js{render 'errors/error', status: 401}
end
end
end
对于弹出式通知,我使用PNotify库http://sciactive.github.io/pnotify/ 它将在右上角显示错误然后隐藏。 只需将其包含在您的项目中,您就可以显示如下错误:
#app/views/errors/error.js.erb
new PNotify({
title: 'Oh No!',
text: '<%=@error_message%>',
type: 'error'
});
此代码可让您避免因不良做法而导致ActiveRecord::RecordNotFound
错误。
<强>更新强>
我忘记了什么!您必须删除set_comment
方法和before_action
,或者将其写为:
before_action :set_comment
...
private
def set_comment
@comment ||= current_user.comments.find(params[:id])
end
此回调在代码中覆盖了来自load_and_authorize_resource
的@comment变量。
Cancan不需要此帮助程序,因为它按load_and_authorize_resource
<强> UPDATE2 强>
您还需要确保使用来自CanCanCommunity rails4
{{}}}的cancan的最新版本,因为原始旧版本不支持rails4
只需在你的Gemfile中使用它
gem 'cancancan', '~> 1.9'
而不是
gem 'cancan'