gpt4 book ai didi

node.js - Connect.js methodOverride 有什么作用?

转载 作者:IT老高 更新时间:2023-10-28 21:46:56 26 4
gpt4 key购买 nike

Connect.js very terse documentationmethodOverride

Provides faux HTTP method support.

这是什么意思? obvious Google search没有帮助。为什么 methodOverride 有用?

最佳答案

  • 如果你想模拟 DELETEPUTmethodOverride 就可以了。
  • 如果你传入的_method post参数设置为'delete''put',那么你可以使用app.delete和在 Express 中使用 app.put 而不是一直使用 app.post (因此更具描述性,更详细):

后端:

// the app
app.put('/users/:id', function (req, res, next) {
// edit your user here
});

客户端逻辑:

// client side must be..
<form> ...
<input type="hidden" name="_method" value="put" />
</form>

关于node.js - Connect.js methodOverride 有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8378338/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com