【发布时间】:2017-08-23 18:46:10
【问题描述】:
我正在尝试使用navigator.sendBeacon 在beforeunload 事件上发送POST 请求,但数据没有到达PHP $_POST。我认为这是因为在使用navigator.sendBeacon 时,标头Content-Type 始终设置为text/plain;charset=UTF-8,但在我的情况下,因为我需要发送查询字符串并因此使用application/x-www-form-urlencoded。
var amountOfApples = 0;
...
addEventListener("beforeunload", function(e) {
navigator.sendBeacon("save.php", "key=apples&value=" + amountOfApples);
});
我怎样才能做到这一点并确保标头设置为application/x-www-form-urlencoded?
【问题讨论】:
标签: javascript ajax onbeforeunload