本文介绍了如果节点模块`body-parser`不安全,下一个解决方案是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在node.js中阅读了 body-parser 上的帖子,声称它不安全。



正文解析器中间件,我应该使用什么解决方案来确保安全?







我是node.js的新手,所以如果您的解决方案提供了示例,我将非常感谢!



提前Thx!

解决方案

解决方案在您链接的文章中提供to。

但请注意,在Express 4中,这些中间件不再打包用Express。它们现在可以通过 body-parser 包, json urlencoded 属性。他们推荐一些其他包用于分段上传。


I read a post on body-parser in node.js and it claimed that it is not safe.

If I'm not to use any body-parser middleware in my project, what solution should I use to ensure safety?

Do Not Use bodyParser with Express.js

body-parser deprecation message

I'm a newbie on node.js so if your solution is provided with examples, I'll really appreciate!

Thx in advance!

解决方案

The solution is provided in the very article you linked to.

Note however that in Express 4, these middlewares are no longer packaged with Express. They are now available via the body-parser package, with json and urlencoded properties. They recommend some other packages for multipart uploads.

这篇关于如果节点模块`body-parser`不安全,下一个解决方案是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 09:45