开始使用
复制一个包含安装步骤和完整Markdown指南的设置提示。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-gtm`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/gtm/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
安装
安装您可以使用我们的AI辅助设置来安装插件。使用以下命令将Capgo技能添加到您的AI工具中:
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins然后使用以下提示:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-gtm` plugin in my project.如果您更喜欢手动设置,请运行以下命令并按照以下平台特定的说明进行安装:
bun add @capgo/capacitor-gtmbunx cap sync导入
导入import { GoogleTagManager } from '@capgo/capacitor-gtm';API概述
标题为“API概述”initialize
标题为“初始化”使用指定的容器ID初始化Google Tag Manager。
import { GoogleTagManager } from '@capgo/capacitor-gtm';
await GoogleTagManager.initialize({} as { containerId: string; timeout?: number });push
标题为“推送”将事件推送到Google Tag Manager的数据层。
import { GoogleTagManager } from '@capgo/capacitor-gtm';
await GoogleTagManager.push({ event: 'purchase', parameters: { value: 99.99, currency: 'USD' }});setUserProperty
标题为“设置用户属性”在Google Tag Manager的数据层中设置用户属性。
import { GoogleTagManager } from '@capgo/capacitor-gtm';
await GoogleTagManager.setUserProperty({ key: 'user_type', value: 'premium'});getValue
Section titled “getValue”从 Google Tag Manager 的 dataLayer 中获取值。 在 dataLayer 中搜索指定键的最新值。
import { GoogleTagManager } from '@capgo/capacitor-gtm';
await GoogleTagManager.getValue({} as { key: string });重置 Google Tag Manager 实例并清除所有数据。 这将从 dataLayer 中删除所有数据并要求重新初始化。
import { GoogleTagManager } from '@capgo/capacitor-gtm';
await GoogleTagManager.reset();真实数据来源
Section titled “真实数据来源”本页面是由插件生成的。
重新同步公共 __CAPGO_KEEP_0__ 时,请重新运行。 src/definitions.ts. Re-run the sync when the public API changes upstream.
Section titled “继续从 Getting Started”
Section titled “getValue”如果您正在使用 开始使用 来规划仪表板和API操作,连接它 使用@capgo/capacitor-gtm 使用@capgo/capacitor-gtm API概述 API详细信息 介绍 __CAPGO_KEEP_0__详细信息 API密钥 API详细信息 设备 __CAPGO_KEEP_0__