Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
678 views
in Technique[技术] by (71.8m points)

ruby on rails - What does 'yield resource' in the Devise controllers do?

I was looking through the Devise code and noticed that most of the controllers yield the resource being created.

class Devise::RegistrationsController < DeviseController
  # ...
  def create
    build_resource(sign_up_params)

    resource.save
    yield resource if block_given?
    # ...

This must be some sort of extendability feature but I don't really get how you would pass a block to to the controller action?

Note: This question is about how you would actually do it in the Rails request cycle, not about how blocks in Ruby work.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It's to allow subclasses to reuse the create implementation provided by devise, but being able to hook into the process.

For example you might have something like

class MyRegistrations < Devise::RegistrationsController
  def create
     super { |resource| ... }
  end
end

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...