前端HTTP请求是否必须匹配后端HTTP请求,例如:axios.patch和表达router.patch

Does the frontend HTTP request have to match the backend HTTP request, eg: axios.patch and express router.patch

我已经 google 搜索过,似乎没有找到答案。它们之间有什么区别,先做axios.patch(url)然后做express router router.patch(url).

是的。您在请求中指定的任何 HTTP 方法都应该与您的后端期望接收的任何内容相匹配。