Revision bfe30464
Von Moritz Bunkus vor fast 5 Jahren hinzugefügt
SL/Request.pm | ||
---|---|---|
308 | 308 |
|
309 | 309 |
$target->{$_} = $self->post_data->{$_} for keys %{ $self->post_data }; |
310 | 310 |
|
311 |
} elsif (($ENV{CONTENT_TYPE} // '') eq 'application/json') {
|
|
311 |
} elsif (($ENV{CONTENT_TYPE} // '') =~ m{^application/json}i) {
|
|
312 | 312 |
$self->post_data(_parse_json_formdata($content)); |
313 | 313 |
|
314 | 314 |
} else { |
Auch abrufbar als: Unified diff
JSON-Payload: Content-Type-Header richtig parsen
Content-Type kann auch noch Attribute wie »; charset=UTF-8«
enthalten. Muss ignoriert werden.