我在 ReactJs 中使用 Fetch 向 api Moleculer 发送请求,如下所示:
var data ={
'ordername' : 'PUG',
'receivername' : 'AnSama'
}
fetch(url,{
method: 'POST',
header: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body : data
})
.then(res => {return res.json()})
.then(
(result) => {
alert(JSON.stringify(result));
},
(error) => {
alert('error');
}
)
然后,我想在 Moleculer(NodeJS 框架)中获取请求主体。我能怎么做?