为什么put和delete方法需要methodoverride?

时间:2013-02-28 15:01:45

标签: node.js put http-method

我的意思是,为什么让putdeletegetpost相同,

他们都是http方法,当我想使用putdelete时,

我必须做一些特别的技巧,比如使用methodoverride

是否存在一些技术问题?

1 个答案:

答案 0 :(得分: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?

总结一下:并非所有浏览器都支持GET和POST以外的发送请求,并且所有服务器软件也不支持除GET,POST和HEAD之外的其他动词。