Closed
Description
HttpClient has FormData formatter, which transforms request body to FormData object if ContentType set to 'multipart/form-data'
The problem is that formatter can't handle nested objects in body.
For example, if you have such object
{
foo: '123',
bar: {
a: 'a',
b: 'b'
}
}
formatter will return such FormData
foo: '123'
bar: '[object Object]'