0

我是 Javascript 新手,目前正在编写一个脚本,将一些字符串作为 JSON 发送到 Mattermost 传入挂钩(Mattermost 只接受 JSON 数据)。我已经用 curl 对其进行了测试,它没有任何问题,命令如下:

curl -i -X POST -H 'Content-Type: application/json' -d '{"text": "Hello, this is some text\nThis is more text. :tada:"}'http://mattermost.test.nz/hooks/xxxxxxxxxxxxxxxxxxx

这是我编写的脚本,由于某种原因它没有将数据发送到端点,我自己试图弄清楚,但它只是不工作。请任何人都可以帮助..

var xmlhttp = new XMLHttpRequest();
var url = "http://mattermost.test.nz/hooks/xxxxxxxxxxxxxxxxxxx";
var data = {"test"};
xmlhttp.open("POST", url, true);
xmlhttp.setRequestHeader("Content-type", "application/json; charset=UTF-8");
xmlhttp.send(JSON.stringify(data));
4

0 回答 0