gpt4 book ai didi

javascript - 如何在 RiveScript 的 javascript 对象宏中发出同步获取请求?

转载 作者:行者123 更新时间:2023-11-29 10:33:10 25 4
gpt4 key购买 nike

我是 rivescript 的新手,我想在 RiveScript 的 javascript 对象宏中发出同步 ajax get 请求。如果有人能提供帮助,我将不胜感激。谢谢

最佳答案

这就是您的做法。请注意,ajax 调用是异步

+ hello
- <call>sendData</call>

> object sendData javascript
var xhr = new XMLHttpRequest();
xhr.open('GET', 'myservice/username?id=some-unique-id');
xhr.onload = function() {
if (xhr.status === 200) {
alert('User\'s name is ' + xhr.responseText);
}
else {
alert('Request failed. Returned status of ' + xhr.status);
}
};
xhr.send();
return "Done.";
< object

关于javascript - 如何在 RiveScript 的 javascript 对象宏中发出同步获取请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41541518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com