1

我是一个尝试学习 nodejs 的菜鸟我的应用程序需要发布、放置和上传文件。我发现您无法使用 BodyParser 上传文件。

在我只使用 BodyParser(在应用程序级别添加它)之前,POST 和 PUT 工作正常。(当然上传没有)

我发现这篇文章 [ Migrating away from bodyParser() in Express app with busboy?

现在尝试关注这篇文章。我只是想让 POST 和 PUT 工作,然后继续上传。对于 PUT 和 POST 我都没有收到错误,但我的 req.body 是 {}

在我的 server.js 我有

mongoose.connection.on("connected", function(ref) {
    console.log("Connected to DB!");

    var app = express();

    port = process.env.port || 3000;
    ip = process.env.ip;

    var router = express.Router();
    router.use(function(req, res, next) {
        next(); 
    });

    app.use('/api', router);

    require('./app/routes')(router);


    app.listen(port, ip, function() {
        console.log('listening on port ' + port);
    });
});

在我的 router.js 中,我有(消除一些混乱)

var ImageModel = require('./models/image.js')
    ,common = require('./common.js')
    ,bodyParser = require('body-parser')
    ,busboy = require('connect-busboy')
; 

module.exports = function(router) {

router.put('/pict/:id',
    bodyParser.urlencoded({ extended: true }),
    function (req, res) {
    console.log("--> %j", req.body);
    ImageModel.findByIdAndUpdate(req.params.id, req.body, function (err, user) {
        if (err) throw err;

        ImageModel.findById(req.params.id, function (err, pict) {
            if (err) res.send(err);
            res.json(pict);
        });

    });
});

router.post('/pict',
    bodyParser.urlencoded({ extended: true }),
    function (req, res) {
    console.log("--> %j", req.body);
    var pict = new ImageModel(req.body);
    pict.save(function (err) {
        if (err) throw err;
        res.json(pict);
    });
});

解决方案

router.put('/pict/:id',
    bodyParser.urlencoded({ extended: true }), bodyParser.json(),
    function (req, res) {
    console.log("--> %j", req.body);
    ImageModel.findByIdAndUpdate(req.params.id, req.body, function (err, user) {
        if (err) throw err;

        ImageModel.findById(req.params.id, function (err, pict) {
            if (err) res.send(err);
            res.json(pict);
        });

    });
});

router.post('/pict',
    bodyParser.urlencoded({ extended: true }), bodyParser.json(),
    function (req, res) {
    console.log("--> %j", req.body);
    var pict = new ImageModel(req.body);
    pict.save(function (err) {
        if (err) throw err;
        res.json(pict);
    });
});
4

1 回答 1

0

问题是我缺少 bodyParser.json()。我已经用有效的代码更新了描述

于 2015-09-02T22:11:57.647 回答