-
Define CRUD. create, read, update, delete
-
Why do we use set method_override: true? The comment says it allows us to use '_method' in the form. I'm honestly not quite tracking the flow of things through there.
-
Explain the difference between value and name in this line:
<input type='text' name='task[title]' value="<%= @task.title %>"/>.
The name looks like it's a string to identify the name of the box. The value is using ruby ?injection? to call the title method on @task, task object?, and get that value that it was created with to put in the text area. -
What are params? Where do they come from?