document.getElementById("btn").onclick=function(){
fetch("http://127.0.0.1:8833/MainService/GetDevConfig/GetDevTypes")
.then((res) => res.json())
.then(data => {
console.log(data);
})
.catch(err => console.log(err));
}
出的什么错误信息,是跨域错误还是什么。
跨域了