4

与提琴手我创建带有标题的帖子消息

内容类型应用程序/文本丰富

app.post('/books',function(req,res){
        var writeStream  = fs.createWriteStream('C://Books.txt' ,{ flags : 'w' });
        writeStream.write(req.body)

我能够在 var writestream 中停止调试,但是当我执行此行时出现错误Entity is too large

有什么技术可以克服这个问题吗?我只想发送大文本文件...

在阅读了一些帖子后,我添加了以下内容,但无济于事......

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

    app.use( bodyParser.json({limit: '2mb'}) );       
    app.use(bodyParser.urlencoded({     
        extended: true,
        keepExtensions: true,
        limit: '2mb', 
        defer: true 
    }));

更新

我也试过以下

  app.use(bodyParser.raw({ type: 'application/text-enriched' }));
    app.use( bodyParser.raw({limit: '10mb'}) );
    app.use(bodyParser.urlencoded({     
        extended: true,
        keepExtensions: true,
        limit: '10mb', 
        defer: true
    }));

也有同样的错误... 413 Request Entity Too Large

4

1 回答 1

3

根据body-parser 文档,您必须根据请求的内容类型对其进行配置。在你的情况下,像

app.use( bodyParser.raw({limit: '1mb'}) );   

或者可能是文本

app.use( bodyParser.text({
    type : 'application/text-enriched', 
    limit: '1mb'
}) );   
于 2015-06-16T06:21:15.447 回答