0

What I mean is, why just let the put and delete as same as get and post,

they are all http method, when I want use put and delete,

I have to do some special trick, like use methodoverride,

Is there some technical problem about letting the same?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
hh54188
  • 14,887
  • 32
  • 113
  • 184

1 Answers1

2

Are the PUT, DELETE, HEAD, etc methods available in most web browsers?

Why don't the modern browsers support PUT and DELETE form methods?

to sum it up: not all browsers support sending requests other than GET and POST, nor do all server software support other verbs than GET, POST and HEAD.

Community
  • 1
  • 1
Floby
  • 2,306
  • 17
  • 15