-
Define CRUD. create, read, update, delete
-
There are seven verb + path combinations that are necessary in a basic Sinatra app in order to provide full CRUD functionality. List each of the seven combinations, and explain what each is for. read: get, read: get, create: get, create: post, update: get, update: put, delete:, delete
-
Why do we use
set method_override: true? to set the form to put or delete instead of the default value of post. We override the verb. -
Explain the difference between
valueandnamein this line: ``.
NewerOlder