在我的程序中,我必须使用产品 ID 获取产品信息,如下所示:
# Show the product info.
def show
@product = Product.find params[:id]
if !@product
redirect_to products_path, :alert => 'Product not found!.'
end
end
如果该产品不存在,我会遇到 Rails 错误Couldn't find Product with id=xxx。我想覆盖此错误消息并自己将错误显示为闪光警报。
我怎样才能做到这一点?提前致谢。