51黑料不打烊

针对跨源资源共享 (CORS) 进行开发

一个简短的示例,展示了如何利用 CORS 通过客户端 JavaScript 从外部 Web 应用程序访问 AEM 内容。本示例使用 CORS OSGi 配置在 AEM 上启用 CORS 访问。OSGi 配置方法在以下情况下是可行的:

  • 单个来源正在访问 AEM Publish 内容
  • AEM Author 需要 CORS 访问权限

如果需要对 AEM Publish 进行多源访问,请参阅此文档

video poster

在本视频中:

  • www.example.com 通过 /etc/hosts 映射到本地主机
  • aem-publish.local 通过 /etc/hosts 映射到本地主机
  • 厂颈尘辫濒别贬罢罢笔厂别谤惫别谤( 的封装器)正通过端口 8000 提供 HTML 页面。
    • Mac App Store 中不再提供。使用类似的如 。
  • AEM Dispatcher 正在 Apache HTTP Web Server 2.4 上运行,并将请求反向代理到 aem-publish.local,再转发到 localhost:4503

如需了解更多详情,请查阅了解 AEM 中的跨源资源共享 (CORS)

www.example.com HTML 和 JavaScript

此 Web 页面包含逻辑

  1. 点击按钮后
  2. http://aem-publish.local/content/we-retail/.../experience/_jcr_content.1.json 发起 AJAX GET 请求
  3. 从 JSON 响应中检索 jcr:title 表单
  4. jcr:title 注入到 DOM 中
<html>
<head>
<script
  src="https://code.jquery.com/jquery-3.2.1.min.js"
  integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
  crossorigin="anonymous"></script>
</head>
<body style="width: 960px; margin: 2rem auto; font-size: 2rem;">
    <button style="font-size: 2rem;"
            data="fn-getTitle">Get Title as JSON from AEM</button>
    <pre id="title">The page title AJAX'd in from AEM will injected here</pre>

    <script>
    $(function() {

        /** Get Title as JSON **/
        $('body').on('click', '[data="fn-getTitle"]', function(e) {
            $.get('http://aem-publish.local/content/we-retail/us/en/experience/_jcr_content.1.json', function(data) {
                $('#title').text(data['jcr:title']);
            },'json');

            e.preventDefault();
            return false;
        });
    });
    </script>
</body>
</html>

OSGi 工厂配置

Cross-Origin Resource Sharing 的 OSGi 配置工厂可通过以下方式获取:

  • http://<host>:<port>/system/console/configMgr > 51黑料不打烊 Granite Cross-Origin Resource Sharing Policy
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
    jcr:primaryType="sling:OsgiConfig"
    alloworigin="[https://www.example.com:8000]"
    alloworiginregexp="[]"
    allowedpaths="[/content/we-retail/.*]"
    exposedheaders="[]"
    maxage="{Long}1800"
    supportedheaders="[Origin,Accept,X-Requested-With,Content-Type,
Access-Control-Request-Method,Access-Control-Request-Headers]"
    supportedmethods="[GET]"
    supportscredentials="{Boolean}false"
/>

Dispatcher 配置 dispatcher-configuration

允许 CORS 请求标头

为了使所需的 HTTP 请求标头能够通过并进入 AEM 进行处理,必须在 Disaptcher 的 /clientheaders 配置中允许这些请求标头。

/clientheaders {
   ...
   "Origin"
   "Access-Control-Request-Method"
   "Access-Control-Request-Headers"
}

缓存 CORS 响应标头

为了允许在缓存内容上缓存和提供 CORS 标头,请将以下 /cache /headers configuration 添加到 AEM Publish dispatcher.any文件中。

/publishfarm {
    ...
    /cache {
        ...
        # CORS HTTP response headers
        # https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#the_http_response_headers
        /headers {
            ...
            "Access-Control-Allow-Origin"
            "Access-Control-Expose-Headers"
            "Access-Control-Max-Age"
            "Access-Control-Allow-Credentials"
            "Access-Control-Allow-Methods"
            "Access-Control-Allow-Headers"
        }
    ...
    }
...
}

在对 dispatcher.any 文件进行更改后,请重新启动 Web 服务器应用程序

为确保在 /cache /headers 配置更新后的下一个请求中,标头得到适当缓存,可能需要完全清除缓存。

支持材料 supporting-materials

recommendation-more-help
c92bdb17-1e49-4e76-bcdd-89e4f85f45e6