0

I have used GET & POST ,DELETE etc. but what is this OPTIONS for? What different does it do in the controller side?

Roman Kiselenko
  • 43,210
  • 9
  • 91
  • 103
Apoorv
  • 1,338
  • 1
  • 17
  • 18

1 Answers1

1

Those request methods are request-response between a client and server,

OPTIONS Returns the HTTP methods that the server supports

You can read more details from w3Schools

Rokibul Hasan
  • 4,078
  • 2
  • 19
  • 30