以下代码在 Chrome 中发布“it’s”,但在 Safari 中发布“it’s”。
invocation = new XMLHttpRequest()
invocation.open('POST', 'https://example.herokuapp.com/content/24/nl/123')
invocation.setRequestHeader('Content-Type', 'text/plain; charset=UTF-8');
invocation.send('{"data":"it’s"}')
如何说服 Chrome 使用 UTF-8 发布?