CRUD with PUT/DELETE

I am currently trying to create a simple restaurant’s Point of Sale from scratch, referring to the issue tracker project as the base model (package, file system).

At one point I was getting an error with my form, that instead of POST request as I defined in the route, the form was doing a GET request in the browser. It was resolved by adding a formmethod='post' attribute in the button of my html form.

To put it simple, why the issue tracker can do CRUD without having formmethod='post' as attribute in the html form. Is it because of JQuery is being used? or anything else? I checked that Exercise Tracker has the attribute. Even in that exercise tracker, the attribute only exists in the add exercise form, not the add user form.

I am asking this because I assume that at this point my app could only perform CRUD only using GET and POST as I am limited by HTML form. Correct me if I’m wrong.

Thanks for the help to clarify this.

Your project link(s)

solution: https://replit.com/@shugyoza/boilerplate-project-issuetracker#views/index.html

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36

Challenge: Issue Tracker

Link to the challenge:

Indeed, HTML5 doesn’t support PUT and DELETE yet.
w3c

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.