在没有其他包的情况下在 Meteor+React 上制作 REST API

IT技术 json reactjs meteor url-routing
2021-04-30 06:16:24

例如,当路径为

/json/users/4

流星应用程序必须返回 json 之类的东西

{
    id: 4,
    name: 'Alex'
}

我正在使用reactrouter:react-router进行客户端路由。我知道reactrouter:react-router-ssr,但是如何使用它来响应原始 json?并使其与现有客户端路由不冲突?

1个回答

我找到了答案。Meteor 的默认Webapp包会有所帮助(doc):

WebApp.connectHandlers.use("/hello", function(req, res, next) {
    res.writeHead(200);
    res.end("Hello world from: " + Meteor.release);
});

我把它放在服务器文件夹中。其他路线将按原样呈现。
所以,还有更有用的例子(es6):

WebApp.connectHandlers.use("/payme", function(req, res, next) {
    res.writeHead(200, {'Content-Type': 'application/json'});
    if (req.method === 'POST') {
        req.on('data', (chunk) => {
            const body = chunk.toString();
            if (body.length < 1e6) {
                const params = body.split('&').reduce((result, item) => {
                   const [key, val] = item.split('=');
                   //do it for utf-8 values (I use it for cyrillic strings)
                   result[key] = unescape(decodeURI(val)).replace(/\+/g, ' ');
                   return result;
                }, {});                      //post method params

                //do something and get resulting json

                res.end(JSON.stringify(result));
             } else
                 res.end(JSON.stringify({error: 'too big query'}));
        });
    } else
        res.end(JSON.stringify({error: 'isnt post req'}));
});

req.query可用于获取GET参数。