开发者

how to display an alternate message ,if particular record is not available?

presently i am playing with rails3.Can it possible to show a message like"So开发者_开发技巧rry , this data is not available", in view if we do not have that data in record.


This is a way to...

class ModelController < ApplicationController

  def show
    respond_to do |format|
      begin
        @model = Model.find(params[:id])
      rescue ActiveRecord::RecordNotFound 
        format.html { render :text => "Sorry , this data is not available" }
      end
    end
  end

end
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜