Iteration 2: Objects and Operations That Spam Requests
Learn to classify spam requests using objects and operations
We'll cover the following...
Flash: communicating between actions
When we use redirect_to()
to transfer control to another action, the browser generates a separate request to invoke that action. That request will be handled by our application in a fresh instance of a controller object. Instance variables that were set in the original action are ...