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

前端 未结 7 1193
夕颜
夕颜 2020-11-21 06:46

I\'ve seen a couple questions around here like How to debug RESTful services, which mentions:

Unfortunately that same browser won\'t allow me to test

相关标签:
7条回答
  • 2020-11-21 07:23

    YES, PUT, DELETE, HEAD etc HTTP methods are available in all modern browsers.

    To be compliant with XMLHttpRequest Level 2 browsers must support these methods. To check which browsers support XMLHttpRequest Level 2 I recommend CanIUse:

    http://caniuse.com/#feat=xhr2

    Only Opera Mini is lacking support atm (juli '15), but Opera Mini lacks support for everything. :)

    0 讨论(0)
提交回复
热议问题