我正在尝试在我的网站 (PHP) 中使用 feedback.js(基于 html2canvas),以便让用户将当前屏幕截图发送到我的电子邮件。但我不知道如何使用 XHR ,JSON ......这对我来说都是新的
以下是它的发送方式:
xhr.open( "POST", this.url, true);
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send( "data=" + encodeURIComponent( window.JSON.stringify( data ) ) );
我如何接收此 url 中的数据,以及如何将其作为图片发送到我的电子邮件?