如何在不将用户重定向到webhook网址的情况下向webhook发送帖子请求(在验证某些用户输入之后)?
答案 0 :(得分:0)
这种请求通常是使用AJAX完成的。
如果您使用的是jQuery,则应该查看.post()方法。看一个例子:
$.post( "/url.html", function( data ) {
# action on request response
});
如果您使用原始javascript(没有js libs),您应该查看XMLHttpRequest()对象。使用示例:
var post = function() {
var url = "http://www.example.com";
var request = new XMLHttpRequest();
request.open( "POST", url, true);
request.send(null);
}
使用这种请求方法,您不会重定向,就像HTML子目标的常见情况一样。