好的,所以我有我正在使用的应用程序的这种方法,它可以在生产中使用。我的问题为什么这行得通?这是新的 Ruby 语法吗?
def edit
load_elements(current_user) unless current_user.role?(:admin)
respond_to do |format|
format.json { render :json => @user }
format.xml { render :xml => @user }
format.html
end
rescue ActiveRecord::RecordNotFound
respond_to_not_found(:json, :xml, :html)
end