建立自訂Cloud Service creating-a-custom-cloud-service

預設Cloud Services集可使用自訂Cloud Service型別擴展。 這可讓您以結構化的方式將自訂標籤插入頁面中。 這主要用於協力廠商分析提供者,例如Google Analytics、圖表等。 Cloud Service會從父頁面繼承至子頁面,且能夠在任何層級中斷繼承。

NOTE
此建立Cloud Service的逐步指南是使用Google Analytics的範例。 並非所有事項都適用於您的使用案例。
  1. 在CRXDE Lite中,在/apps下建立節點:

    • 名稱acs
    • 類型nt:folder
  2. /apps/acs下建立節點:

    • 名稱analytics
    • 類型sling:Folder
  3. /apps/acs/analytics下建立兩個節點:

    • 名稱:元件
    • 類型sling:Folder

    • 名稱:範本
    • 類型sling:Folder
  4. 用滑鼠右鍵按一下/apps/acs/analytics/components。 選取​ 建立……,然後選取​ 建立元件…… ​開啟的對話方塊可讓您指定:

    • 標籤googleanalyticspage
    • 標題Google Analytics Page
    • 超級型別cq/cloudserviceconfigs/components/configpage
    • 群組.hidden
  5. 按兩次「下一步​ 」並指定:

    • 允許的父系: acs/analytics/templates/googleanalytics

    按兩下​ 下一步,然後按一下​ 確定

  6. 新增屬性至googleanalyticspage

    • 名稱: cq:defaultView
    • 值: html
  7. /apps/acs/analytics/components/googleanalyticspage下建立名為content.jsp的檔案,其內容如下:

    code language-xml
    <%@page contentType="text/html"
                pageEncoding="utf-8"%><%
    %><%@include file="/libs/foundation/global.jsp"%><div>
    
    <div>
        <h3>Google Analytics Settings</h3>
        <ul>
            <li><div class="li-bullet"><strong>accountID: </strong><br><%= xssAPI.encodeForHTML(properties.get("accountID", "")) %></div></li>
        </ul>
    </div>
    
  8. /apps/acs/analytics/components/googleanalyticspage/下建立節點:

    • 名稱dialog

    • 類型cq:Dialog

    • 屬性

      • 名稱title
      • 類型String
      • Google Analytics Config
      • 名稱xtype
      • 類型String
      • dialog
  9. /apps/acs/analytics/components/googleanalyticspage/dialog下建立節點:

    • 名稱items

    • 類型cq:Widget

    • 屬性

      • 名稱xtype
      • 類型String
      • tabpanel
  10. /apps/acs/analytics/components/googleanalyticspage/dialog/items下建立節點:

    • 名稱items
    • 類型cq:WidgetCollection
  11. /apps/acs/analytics/components/googleanalyticspage/dialog/items/items下建立節點:

    • 名稱: tab1

    • 類型cq:Panel

    • 屬性

      • 名稱title
      • 類型String
      • Config
  12. /apps/acs/analytics/components/googleanalyticspage/dialog/items/items/tab1下建立節點:

    • 名稱:專案

    • 類型nt:unstructured

    • 屬性

      • 名稱fieldLabel

      • 型別:字串

      • :帳戶識別碼

      • 名稱fieldDescription

      • 類型String

      • The account ID assigned by Google. Usually in the form UA-NNNNNN-N

      • 名稱name

      • 類型String

      • ./accountID

      • 名稱validateOnBlur

      • 類型String

      • true

      • 名稱xtype

      • 類型String

      • textfield

  13. /libs/cq/cloudserviceconfigs/components/configpage/body.jsp複製到/apps/acs/analytics/components/googleanalyticspage/body.jsp並在第34行將libs變更為apps,並將第79行的指令碼參考設為完整路徑。

  14. /apps/acs/analytics/templates/下建立範本:

    • 具有​ 資源型別 = acs/analytics/components/googleanalyticspage
    • 具有​ 標籤 = googleanalytics
    • 具有​ 標題= Google Analytics Configuration
    • allowedPath = /etc/cloudservices/googleanalytics(/.*)?
    • 具有​ allowedChildren = /apps/acs/analytics/templates/googleanalytics
    • 具有​ sling:resourceSuperType = cq/cloudserviceconfigs/templates/configpage (在範本節點上,而非jcr:content節點)
    • 使用​ cq:designPath = /etc/designs/cloudservices/googleanalytics (在jcr:content上)
  15. 建立元件: /apps/acs/analytics/components/googleanalytics

    將下列內容新增至googleanalytics.jsp

    code language-xml
    <%@page import="org.apache.sling.api.resource.Resource,
                    org.apache.sling.api.resource.ValueMap,
                    org.apache.sling.api.resource.ResourceUtil,
                    com.day.cq.wcm.webservicesupport.Configuration,
                    com.day.cq.wcm.webservicesupport.ConfigurationManager" %>
    <%@include file="/libs/foundation/global.jsp" %><%
    
    String[] services = pageProperties.getInherited("cq:cloudserviceconfigs", new String[]{});
    ConfigurationManager cfgMgr = resource.getResourceResolver().adaptTo(ConfigurationManager.class);
    if(cfgMgr != null) {
        String accountID = null;
        Configuration cfg = cfgMgr.getConfiguration("googleanalytics", services);
        if(cfg != null) {
            accountID = cfg.get("accountID", null);
        }
    
        if(accountID != null) {
        %>
    <script type="text/javascript">
    
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', '<%= accountID %>']);
      _gaq.push(['_trackPageview']);
    
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
      })();
    
    </script><%
        }
    }
    %>
    

    這應該會根據設定屬性輸出自訂標籤。

  16. 導覽至http://localhost:4502/miscadmin#/etc/cloudservices並建立頁面:

    • 標題Google Analytics
    • 名稱googleanalytics

    返回CRXDE Lite,並在/etc/cloudservices/googleanalytics底下,將下列屬性新增到jcr:content

    • 名稱componentReference
    • 類型String
    • acs/analytics/components/googleanalytics
  17. 導覽至新建立的服務頁面( http://localhost:4502/etc/cloudservices/googleanalytics.html),然後按一下​ + ​以建立設定:

    • 父設定/etc/cloudservices/googleanalytics
    • 標題: My First GA Config

    選擇​ Google Analytics組態 ​並按一下​ 建立

  18. 輸入​ 帳戶ID,例如AA-11111111-1。 按一下​ 「確定」

  19. 導覽至頁面,並在​ Cloud Service ​標籤下方的頁面屬性中新增新建立的設定。

  20. 頁面中將會新增自訂標籤。

recommendation-more-help
19ffd973-7af2-44d0-84b5-d547b0dffee2