我正在开发一个项目,需要从Yahoo Finance获取数据是JSON。目前,每当我的AJAX代码尝试连接时,我都会收到以下错误。
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20where%20symbol%20in%20(%27MSFT%27)&format=json&diagnostics=true&env=http://datatables.org/alltables.env. This can be fixed by moving the resource to the same domain or enabling CORS. yql
"Request failed: error, "
我通过允许访问控制头来阅读有关启用CORS的内容。我继续把它添加到我的htaccess文件中。
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
但我仍然无法让CORS正常工作。有人可以帮忙。谢谢:))