使用JavaScript的AppMeasurement實作Adobe Analytics

JavaScript 適用的 AppMeasurement 向來是實施 Adobe Analytics 的常用方法。但由於標記管理系統越來越熱門,所以建議使用 Adobe Experience Platform 中的標記

實施任務的高層級概觀:

如何以Javascript的AppMeasurement實作Adobe分析,如本節所述。

任務
更多資訊
1
確定您已 定義報表套裝
報表套裝管理員
2
從代碼管理器下載AppMeasurement 所需的JavaScript代碼。 解壓縮檔案。
程式碼管理員
3

AppMeasurement.js新增至您網站的範本檔案。 程式碼包含將資料傳送至Adobe所需的程式庫。

code language-html
<head>
  <script src="AppMeasurement.js"></script>
  …
</head>
4

AppMeasurement.js 中定義設定變數。 Analytics物件例項化時,這些變數可確保資料收集設定正確無誤。

code language-javascript
// Instantiate the Analytics tracking object with report suite ID
var s_account = "examplersid";
var s=s_gi(s_account);

// Make sure data is sent to the correct tracking server
s.trackingServer = "example.data.adobedc.net";
設定變數
5

在網站的頁面程式碼中定義頁面層級變數。 這些變數會決定傳送至Adobe的特定維度和量度。

code language-js
s.pageName = "Example page";
s.eVar1 = "Example eVar";
s.events = "event1";
頁面變數
6

定義所有頁面變數時,使用t()方法 將資料傳送至Adobe。

code language-js
s.t();
t()方法
7
先擴充和驗證您的實施,再將其投入生產。

其他資源

recommendation-more-help
b4f6d761-4a8b-4322-b801-c85b9e3be690