koajs / koa-body

koa body parser middleware
MIT License
950 stars 130 forks source link

Does not parse nested objects when uploading multipart form data #83

Open bit-crafter opened 6 years ago

bit-crafter commented 6 years ago

Request Object

{
    "title" : "Coca Cola",
    "details" : "More and More countries",
    "content" : {
        "options" : {
            "background" : {
                "color" : "#443344"
            }
        },
        "data" : "Hello world"
    }
}

Expected

{
    "title" : "Coca Cola",
    "details" : "More and More countries",
    "content" : {
        "options" : {
            "background" : {
                "color" : "#443344"
            }
        },
        "data" : "Hello world"
    }
}

Actual

{
    "title" : "Coca Cola",
    "details" : "More and More countries",
    "content[options][background][color]" : "#443344",
        "data" : "Hello world"
}
katanacrimson commented 5 years ago

This appears to be more of an issue with formidible itself; this issue appears relevant.