웹 SDK의 버퍼된 요청
웹 SDK은 현재 요청을 버퍼링하는 기능을 제공하지 않습니다.
Adobe Analytics 확장을 사용한 버퍼된 요청
Adobe Analytics 확장에는 이 변수를 사용할 전용 필드가 없습니다. AppMeasurement 구문 다음에 나오는 사용자 정의 코드 편집기를 사용하십시오.
AppMeasurement 및 Analytics 확장 사용자 지정 코드 편집기의 s.bufferRequests()
t()
또는 tl()
을(를) 호출하기 전에 bufferRequests()
메서드를 호출하십시오. bufferRequests()
이(가) 호출되면 후속 추적 호출이 Adobe 데이터 수집 서버로 전송되는 대신 세션 저장소에 기록됩니다.
// Instantiate the tracking object
var s = s_gi("examplersid");
// Flag the request to be buffered
s.bufferRequests();
// The t() or tl() method then writes the data to session storage instead of sending it to Adobe
s.tl(true,"o","Example link click");
// On a subsequent page, the tracking call sends both the above link tracking call and the page view call
s.t();