Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

koa 的 413 Payload Too Large 如何解决?

$
0
0

今天使用 Quill跟着 官方Demo实现啦,但是在ajax 提交时(做自动保存)内容中有图片,就提示 413 Payload Too Large 的错误了。 查了一下别人教 这样子去解决

const bodyparser = require('koa-better-body')

// 检查用户会话
module.exports = bodyparser({
    formLimit : "5mb",
    "jsonLimit":"5mb",
    "textLimit":"5mb"
})

可是 一样没有效果。请高人指点


Viewing all articles
Browse latest Browse all 14821

Trending Articles