1

我在 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 框架)中获取请求主体。我能怎么做?

4

2 回答 2

2

Moleculer API Gateway中,JSON 主体总是通过ctx.params. 如果要将标头值发送到服务,请在路由器设置中使用onBeforeHook 。

broker.createService({
    mixins: [ApiService],
    settings: {
        routes: [
            {
                path: "/",
                onBeforeCall(ctx, route, req, res) {
                    // Set request headers to context meta
                    ctx.meta.userAgent = req.headers["user-agent"];
                }
            }
        ]
    }
});
于 2018-04-09T19:52:03.023 回答
0

除了@Icebob 答案之外,如果您的 POST API 处理异步请求(很可能会)并返回一个承诺。这是一个例子(这是我们使用的方式):

actions : {
    postAPI(ctx) {
        return new this.Promise((resolve, reject) => {
            svc.postdata(ctx, (err, res) => {
                if (err) {
                    reject(err);
                } else {
                    resolve(res);
                }
            });
        })
            .then((res) => {
                return res;
            }, (err) => {
                return err;
            });
    }
}
于 2018-07-06T05:08:10.780 回答