小编Phe*_*non的帖子

覆盖帖子请求

我在控制台中放入了以下代码:

XMLHttpRequest.prototype.send = function(body) {
    // modifies inputted request
    newBody = JSON.parse(body);
    newBody.points = 417;

  // sends modified request
    this.realSend(JSON.stringify(newBody));
}
Run Code Online (Sandbox Code Playgroud)

它应该在每次发送请求时将积分设为 417,但是当我查看请求正文时,它仍然显示原始积分数量。有什么帮助吗?

javascript http xmlhttprequest http-post

6
推荐指数
1
解决办法
543
查看次数

标签 统计

http ×1

http-post ×1

javascript ×1

xmlhttprequest ×1