我需要將document.body.innerHTML發佈到我的域的代理。目前正在PM2和之前我用GET,它看上去像:XHR後保存document.body JS
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://domain.ru/pmproxy?info='+document.body.innerHTML+'&location='+document.location+1);
xhr.send();
現在,因爲有信,我需要我們POST的限制。我怎樣才能把它變成POST?
通過用''POST'替換'GET'。另外,在你的innerHTML由於包含一個特殊字符而出錯的時候'encodeURIComponent'可能是一個好主意。 – Watilin