Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 ajax 调用中调用 .NET Web 服务?我面临同源政策错误。我该如何解决?
你的网络服务应该允许你在它上请求。
例如在 php
<?php header("Access-Control-Allow-Origin: *");
其中“*”可以替换为您的服务器位置
在 dot net 中,它可能类似于(我不知道 .NET)
[EnableCors(origins: "http://mywebclient.azurewebsites.net", headers: "*", methods: "*")]