以下是我在表单提交功能中所做的事情:
$.ajax({
url: "https://smsc.ru/sys/send.php",
data: {
"login": "***",
"psw": "****",
"phones": phone,
"mes": "this is a test message " + name
},
type: 'GET',
success: function(response) {
console.log("success")
},
error: function(xhr) {
console.log("error")
}
});
但是我收到以下关于CORS的错误:请求的资源上没有“Access-Control-Allow-Origin”标头。因此,不允许原点“http://domain.test”访问。
有没有办法在使用javascript避免CORS问题的表单提交后发出GET请求?