body解析器如何在节点js中工作

时间:2017-10-10 17:44:15

标签: node.js angular express body-parser

我知道身体解析器用于提取数据,但这是如何工作的。我从我的角度2视图发送package { public class ExampleClass { }//if you put an extra one of these closing curly braces in your code, it will end your class, or if you on purpose do it like this example. private function dosomething():void { //will error because this function needs to live inside the class block } } ,但在我的节点js + express rest API我不需要使用JSON.stringify(data)来使用数据,请向我解释这是怎么回事完全有效。

1 个答案:

答案 0 :(得分:0)

主体解析器模块在使用json模式(docs here)时自动在请求体上运行JSON.parse,只要传入请求的Content-Type标头与使用的模式匹配(在这个例子中的application / json)。

请参阅源here,了解身体解析器的实际操作方式。