LoginSignup
2
3

More than 5 years have passed since last update.

angularticsの属性のマッピングについて

Posted at

angularticsはAngularJSでGoogleアナリティクスを使うときに便利な子です。

内部的にはGA以外にも対応しているようですが、そのせいで渡したい属性値のキーが微妙に汎用的でした。なので、そのマッピングについての個人的なメモです。

まぁ最終的にはソースを見ましょうってことなんですけどね・・・
https://github.com/luisfarzati/angulartics/blob/master/src/angulartics-ga.js

GA angulartics
category category
action event
opt_label label
opt_value value
opt_noninteraction noninteraction

タグに直接埋め込む場合はanalytics-の接頭語をつければ良いらしい。

例)

<button type="button" analytics-on="click" analytics-category="カテゴリーはここ" analytics-event="アクションがここ" analytics-label="ラベルはここ" analytics-value="任意の値" analytics-noninteraction="true">てすとボタン</button>

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3