The answer to your question is No. You cannot change it. According to XMLHttpRequest2 TR, FormData
constructed data is explicitly encoded to UTF-8
. With no mention of allowing to change it.
The usual mimeType or Content-Type=charset become invalid for multi-part requests, since it is handled differently for the exact same reason.
To quote,
If data is a FormData
Let the request entity body be the result of running the multipart/form-data encoding algorithm with data as form data set and with UTF-8 as the explicit character encoding.
Let mime type be the concatenation of "multipart/form-data;", a U+0020 SPACE character, "boundary=", and the multipart/form-data boundary string generated by the multipart/form-data encoding algorithm.
Hope this helps!
Update
If you are willing to forgo
new FormData(document.forms.namedItem("fileinfo"));
for
new FormData().append("name", "value")
there might be a workable solution possible. Let me know if thats what you are looking for.
Another Update
Did a little bit of running around. Updated fiddle with all modes
So this is the story,
1 form with accept-charset="utf8"
=> default behavior
The content does not require any additional escaping/encoding. So the request fires with the text intact as får løbende
2 form with accept-charset="windows-1251"
=> your case
The content requires additional escaping/encoding, since the default charset of the browser here is utf8. So the content is escaped, and then fired, i.e. the content sent is får løbende
3 FormData constructed with form element
The content does not require any additional escaping/encoding, since it defaults to utf8
. So the request fires with text as får løbende
.
4 FormData constructed, and then appended with escaped data
The content is still in the utf8 encoding, but it doesn't hurt to call escape(content)
before appending to the form data. This means the request fires with text as f%E5r%20l%F8bende
. Still no dice right?
I was wrong, nope. Looking closer[read => staring for a few minutes....] at
får løbende
and
f%E5r%20l%F8bende
Then it all fell into place - %E5
(Hexadecimal) = å
(Decimal). So basically escape()
is Javascript's way of doing things, the %
based encoding, which is not HTML friendly.
Similarly &#;
, as we know is HTML's way of encoding. So I put another mode to ajax, [which is what you are looking for, I'm guessing]
5 FormData constructed, and then appended with html-escaped data
The content is still in utf8 encoding. Doesn't hurt to escape it like HTML encoding, using this wonderful piece of code from stackoverflow. And voila, the request fired with the text får løbende
Updated fiddle with all modes
Hope this helps clear it out!
UPDATE for windows-1251 full support
This привет får løbende
input was failing in earlier mode 5. Update fiddle http://jsfiddle.net/epsSZ/6/.
Uses a combination of solution here https://mcmap.net/q/906404/-encoding-conversation-utf-8-to-1251-in-javascript and mine. So the problem is escaping everything. So now escaping only characters not present in the windows-1251 charset.
This helps it I hope!
append
if it is not too complex, but this answer is yet satisfactory. – Crawly