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.
我需要在 JavaScript 客户端 SAPUI5 应用程序中解决相同的源策略限制,该应用程序正在使用来自跨源服务器的 OData 服务。在 SAP HANA 开发人员指南中,解决此问题的方法之一是启用 CORS(跨源资源共享)。
我尝试按照开发人员指南中的说明通过将以下配置添加到 .xsaccess 文件来启用 CORS:
"cors": [{ "enabled": true }]
然而 CORS 没有启用!我应该考虑其他配置吗?
谢谢
将此参数添加到您的 ajax 调用并检查:
xhrFields: {withCredentials: true}