25

我看到 LoopBack 内置了 Express 3.x 中间件。事实上,body-parser 在loopback/node_modules. 但我不知道如何将它用作中间件。我从未使用过 Express 3.x,所以也许就是这样。require显然,除非我在我的项目中安装 body-parser 作为依赖项,否则它不起作用。

我应该怎么做server.js才能使用 body-parser 以便将 Web 表单解析为req.params?这就是它的作用,对吧?

4

8 回答 8

57

经过数小时的挫败后,我只是将其添加为middleware.json

"parse": {
    "body-parser#json": {},
    "body-parser#urlencoded": {"params": { "extended": true }}
}

它作为依赖项安装。现在我req.body的路线中有表单数据。我的server/boot/routes.js样子是这样的:

module.exports = function(app) {
    app.post('/mailing_list', function(req, res) {
        console.log(req.body.email);
        res.send({"status": 1, "message": "Successfully added to mailing list."})
    });
}
于 2015-02-15T20:01:40.407 回答
26

只是为了更清楚地了解如何使这项工作正常工作(因为在找到这个答案后我仍然挣扎了一段时间!),以下是我采取的步骤:

如上所述,在 $APP_HOME/server/middleware.json 中,将 body-parser 添加到“parse”部分:

{
  "initial:before": {
    "loopback#favicon": {}
  },
  "initial": {
    "compression": {},
    "cors": {
      "params": {
        "origin": true,
        "credentials": true,
        "maxAge": 86400
      }
    }
  },
  "session": {
  },
  "auth": {
  },
  "parse": {
    "body-parser#json": {},
    "body-parser#urlencoded": {"params": { "extended": true }}
  },
  "routes": {
  },
  "files": {
  },
  "final": {
    "loopback#urlNotFound": {}
  },
  "final:after": {
    "errorhandler": {}
  }
}

接下来,我将解析器设置添加到 $APP_HOME/server/server.js:

var loopback = require('loopback');
var bodyParser = require('body-parser');
var multer = require('multer');

var boot = require('loopback-boot');

var app = module.exports = loopback();

app.use(bodyParser.json()); // for parsing application/json
app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
app.use(multer()); // for parsing multipart/form-data

app.start = function() {
...
...
cont'd

然后,因为我不想弄乱自定义路由,所以我在 $APP_HOME/common/models/model.js 中添加了以下内容:

module.exports = function(Model) {

  Model.incoming = function(req, cb) {
    cb(null, 'Hey there, ' + req.body.sender);
  }
  Model.remoteMethod(
    'incoming',
    { accepts: [
      { arg: 'req', type: 'object', http: function(ctx) {
        return ctx.req;
      } 
    }],
    returns: {arg: 'summary', type: 'string'}
    }
  );
};

我现在可以使用 $> slc run 运行我的应用程序。

当我发布到端点时,它现在被正确解析,一切都很好。我希望这对其他人有帮助!

于 2015-04-23T03:34:14.590 回答
9

我正在使用环回 2.14.0:

要在自定义引导脚本路由中使用 body-parser,您只需要:

1)安装正文解析器 npm install body-parser --save

2) 在 middleware.json 中注册模块

"parse": {
"body-parser#json": {},
"body-parser#urlencoded": {"params": { "extended": true }}
},

不需要在 server.js 中设置解析器,当您注册中间件时,loopback 会为您执行此操作。

请注意,body 解析器现在安装在您的源“node_modules”目录以及环回模块目录中。

如果可能,请尝试按照环回文档中的说明注册自定义远程方法。

以这种方式注册路由可以让您开箱即用地访问环回的正文解析器,并且是“最干净”的实现。

于 2015-09-25T13:49:56.573 回答
4

根据 Ben Carlson 的这个答案https://stackoverflow.com/a/29813184/605586你必须

npm install --save body-parser multer

然后在你的 server.js 中需要模块:

var bodyParser = require('body-parser');
var multer = require('multer');

并在 app.start 之前使用它们:

app.use(bodyParser.json()); // for parsing application/json
app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
app.use(multer().any()); // for parsing multipart/form-data

然后你可以创建一个远程方法:

App.incoming = function (req, cb) {
    console.log(req);
    // the files are available as req.files.
    // the body fields are available in req.body
    cb(null, 'Hey there, ' + req.body.sender);
}
App.remoteMethod(
    'incoming',
    {
    accepts: [
        {
        arg: 'req', type: 'object', http: function (ctx) {
            return ctx.req;
        }
        }],
    returns: { arg: 'summary', type: 'string' }
    }
);

使用它,您可以使用 multipart/form-data 上传文件和其他数据字段以环回。

于 2018-08-28T14:49:53.187 回答
2

我发布这个只是为了提供信息。我遇到了同样的问题,发现这也有效。您可以使用以下内容在 server/boot/ 目录中添加文件:

var bodyParser = require('body-parser');

module.exports = function(app) {
  app.use(bodyParser.urlencoded({ extended: true }));
}

当然,您必须通过运行以下命令来安装该软件包:

npm install --save body-parser

这会将包保存在 node_modules 目录下。如果您希望它首先运行,您可以以“0”开头的文件名,因为它们是按字母顺序加载的。

话虽如此,我认为使用上面提到的中间件配置方法比这个更“正确”和优雅,但如果其他人发现它有用,我会分享它。

于 2015-06-16T16:30:27.333 回答
2

在 Loopback ^3.22.0 中,我可以通过添加

"parse": {
    "body-parser#json": {}
  },

到 server/middleware.json 以使用 server/boot/routes.js 中的 application/json 帖子正文

module.exports = function(app) {
  app.post('/api/sayhello', function(req, res, next) {
     console.log(req.body)
于 2019-02-07T19:46:39.577 回答
0

我有不同的测试结果。

1) 对于 json 和 urlencode 类型,不需要在 middleware.json 中添加它们的解析器。我可以在不添加 body-parser#json 和 body-parser#urlencoded 的情况下成功从 req.body 获取数据。Loopback 应该已经支持它们。

Loopback相关源码(我认为)

1. in strong-remote repo , rest-adapter.js , there is body-parser for json and urlendcoded

line 35
var json = bodyParser.json;
var urlencoded = bodyParser.urlencoded;

line 315
root.use(urlencoded(urlencodedOptions));
root.use(json(jsonOptions));

2. 
remote-object.js
line 33
require('./rest-adapter');

line 97
RemoteObjects.prototype.handler = function(nameOrClass, options) {
var Adapter = this.adapter(nameOrClass);
var adapter = new Adapter(this, options);
var handler = adapter.createHandler();

if (handler) {
// allow adapter reference from handler
handler.adapter = adapter;
}

return handler;
};

2)对于raw类型,我们可以在middleware.json的“parse”部分添加body-parser#raw,当然需要npm install body-parser。

我的测试代码:

1.My readable stream is from the file uploadRaw.txt , the content is :
GreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaGreenTeaEeeeend

2. middleware.json
"parse": {
"body-parser#raw": {
"paths": [
"/api/v1/Buckets/?/upload"
]
}
},

3.
it('application/octet-stream -- upload non-form', () =>
new Promise((resolve) => {

const options = {

method: 'POST',

host: testConfig.server.host,

port: testConfig.server.port,

path: ${appconfig.restApiRoot}/Buckets/${TEST_CONTAINER}/upload,

headers: {

'Content-Type': 'application/octet-stream',

},
};

const request = http.request(options);

request.on('error', (e) => {
logger.debug(problem with request: ${e.message});
});

const readStream = fs.createReadStream('tests/resources/uploadRaw.txt');

readStream.pipe(request);

resolve();
}));

4.
Bucket.upload = (req, res, options, cb) => {

logger.debug('sssssss in uploadFileToContainer');

fs.writeFile('/Users/caiyufei/TEA/green.txt', req.body, (err) => {

if (err) {

logger.debug('oh, failed to write file');

return;
}

logger.debug('green file is saved!');
});

};

OR

Bucket.upload = (req, res, options, cb) => {

logger.debug('sssssss in uploadFileToContainer');

const writeStream = fs.createWriteStream('/Users/caiyufei/TEA/green.txt');

const streamOptions = {
highWaterMark: 16384,`enter code here`
encoding: null,
}

streamifier.createReadStream(Buffer.from(req.body), streamOptions).pipe(writeStream);

};

5. package.json

"body-parser": "^1.17.1",

"streamifier": "^0.1.1",
于 2017-08-29T09:55:21.467 回答
0

也可以像这样在 loopback 中使用 express 框架的内置解析器,例如用于 json 解析: app.use(app.loopback.json());

于 2018-07-10T12:07:21.297 回答