开始使用
复制一个带有安装步骤和本插件的完整 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';initialize
初始化初始化 Google Tag Manager,指定容器 ID。
import { GoogleTagManager } from '@capgo/capacitor-gtm';
await GoogleTagManager.initialize({} as { containerId: string; timeout?: number });将事件推送到 Google Tag Manager 数据层。
import { GoogleTagManager } from '@capgo/capacitor-gtm';
await GoogleTagManager.push({ event: 'purchase', parameters: { value: 99.99, currency: 'USD' }});setUserProperty
Section titled “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 数据层中获取值。 在数据层中搜索指定键的最新值。
import { GoogleTagManager } from '@capgo/capacitor-gtm';
await GoogleTagManager.getValue({} as { key: string });重置 Google Tag Manager 实例并清除所有数据。 此操作将从数据层中删除所有数据并要求重新初始化。
import { GoogleTagManager } from '@capgo/capacitor-gtm';
await GoogleTagManager.reset();真实数据来源
真实数据来源本页面由插件生成 src/definitions.ts当公共API上游发生变化时,请重新运行同步。
继续从开始
继续从开始如果您正在使用 开始 来规划仪表板和API操作,请将其连接到 使用@capgo/capacitor-gtm 使用@capgo/capacitor-gtm API概述 在 API 概述中了解实现细节 简介 在简介中了解实现细节 API 密钥 在 API 密钥中了解实现细节,并 设备 在设备中了解实现细节。