Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
tumdav opened this issue May 5, 2018 · 1 comment
Open

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

tumdav opened this issue May 5, 2018 · 1 comment

Comments

@tumdav
Copy link

tumdav commented May 5, 2018

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
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants