我想从 Camunda 使用 Javascript 执行的 BPMN 模型中的脚本任务中发送 HTTP 请求。有谁知道这是怎么做到的吗?
我已经对此进行了测试:
var xmlhttp;
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", "http://test.local/append.php", true);
xmlhttp.send();
但是一旦我到达包含上述代码的脚本任务,就会Tasklist
提示XMLHttpRequest
找不到。