我正在尝试提交包含 UTF-8 字符的表单。
<form id="workflowPersistForm" class="invisibleClass" accept-charset="UTF-8" enctype="application/x-www-form-urlencoded; charset=UTF-8" method="post" action="/workflow-next">
<input id="stateGlobal" type="hidden" value="お問い合わせ" name="state"/>
</form>
问题是在查询日志中,日文字符是乱码,从响应中看起来它们是双重编码的(UTF-8)。
如果我执行 GET 而不是 POST,一切正常。谁能帮帮我?这是在哪里进行双重编码的?我该如何解决?