我想向我的数据库连接和其他东西工作的服务器发送一个ajax请求。我想要的是通过ajax将2个帖子值发送到该服务器,该服务器将返回响应。请参阅下面的示例代码。
post_data = {'userName':name, 'userPass':password};
$.post('http://www.example2.com/script.php', post_data, function(response){
//doing something with response
}
此代码在example1.com中,我们将发布数据发送到example2.com。但是当我尝试这个时,我得到一个错误,如下所示。
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://www.example2.com/script.php. This can be fixed by moving the resource to the same domain or enabling CORS
所以我必须启用一些东西。我不知道如何启用CORS。怎么做?