Express 路由器中的 GET、DELETE、POST 真的有区别吗?

There is a real difference in GET, DELETE, POST in express router?

当我们编写快速服务器时,我们可以使用 GET、POST、DELETE、PUT 设置路由。

这两者真的有区别吗?或者只是“最佳实践”?

是的,确实存在差异。使用 Express 或任何其他网络服务器时,您应该遵循 HTTP 规范。

GET requests a representation of the specified resource

DELETE deletes the specified resource

POST sends data to the server