在MVC应用程序中使用Mixpanel的教程

时间:2013-07-15 01:26:19

标签: model-view-controller mixpanel

我在网络应用中使用内容安全策略,因此使用内联脚本的MixPanel JavaScript库可能不适合我。在我花时间搞清楚如何使用Java Lib之前,我想知道是否有人已经完成它并有一个教程,他们可以指向我或建议/示例?谷歌今晚很遗憾不是我的朋友......

1 个答案:

答案 0 :(得分:0)

只要浏览器支持async javascript加载,以下应解决问题。 [我只使用Mixpanel 2.2进行了测试]

<script type="text/javascript">
var b = window.mixpanel || [];
if (!b.__SV) {
    var i, g;
    window.mixpanel = b;
    b._i = [];
    b.init = function (a, e, d) {
        function f(b, h) {
            var a = h.split(".");
            2 == a.length && (b = b[a[0]], h = a[1]);
            b[h] = function () {
                b.push([h].concat(Array.prototype.slice.call(arguments, 0)))
            }
        }
        var c = b;
        "undefined" !==
        typeof d ? c = b[d] = [] : d = "mixpanel";
        c.people = c.people || [];
        c.toString = function (b) {
            var a = "mixpanel";
            "mixpanel" !== d && (a += "." + d);
            b || (a += " (stub)");
            return a
        };
        c.people.toString = function () {
            return c.toString(1) + ".people (stub)"
        };
        i = "disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");
        for (g = 0; g < i.length; g++)
            f(c, i[g]);
        b._i.push([a, e, d])
    };
    b.__SV = 1.2
}
b.init("YOUR TOKEN");
</script>
<script type="text/javascript" src="http://cdn.mxpnl.com/libs/mixpanel-2.2.min.js" async="true"></script>

用你的mixpanel toekn替换“你的东西”。