带设置变量的发送请求,需要加一个await
await $.ajax
await应该是同步发布请求,但是我这个接口必须先执行预执行脚本的请求后才能做其他的事情呀
增加了await还是不行,对应的ajax没有执行
您写的格式不对啊,看有没有发送到,在发送后写 success:function(response){
console.log(response);}
例子
await $.ajax({
method:"GET",
url:"https://echo.apipost.cn/get.php",
success:function(response){
console.log(response);
apt.variables.set("bigint", response.bigint);
}
})