0

Google アナリティクスの JavaScript スニペットの仕組みに似たものを探しています。

たとえば、私はこれを持っています、

(function(d, t) {
    var g = d.createElement(t),
        s = d.getElementsByTagName(t)[0];
    g.src = 'myjs.js';
    s.parentNode.insertBefore(g, s);
}(document, 'script')); 

スクリプトはクラスを定義しますが、これを呼び出すと:

var newClass = new myclass('myparam');

定義されていないエラーが発生します。ただし、待ってからコンソールで再度呼び出すと、エラーは発生しなくなります。スクリプトがまだ完全にロードされていないため、クラスが存在しないと想定しています。

ただし、インポート後に直接 Google アナリティクス関数を呼び出すことは可能です。たとえば、

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', '[userid]', '[website]');

スクリプトでこれを行うにはどうすればよいですか?

4

1 に答える 1

2

その GA コードが行うことは、インライン コードを使用してオブジェクトをすぐに作成することです。オブジェクトは、GA スクリプトが読み込まれるまで、呼び出しを配列に格納するだけです。その後、GA スクリプトは配列を使用します。(以下の詳細を参照してください。)

A)コンストラクター関数であり、B)コードは戻り値を使用するため、表示したコードではそれを行うことはできません。

その GA コードの機能の詳細は次のとおりです。

(function (i, s, o, g, r, a, m) {
    // Remember the name 'ga' on window, using the property GoogleAnalyticsObject
    i['GoogleAnalyticsObject'] = r;

    // Create or retrieve the 'ga' function. If there already is one,
    // it's used as-is. If not, create a new function.
    i[r] = i[r] || function () {
        // The bit in parens initializes an array if there isn't one
        // Then the push call remembers the arguments for this call
        (i[r].q = i[r].q || []).push(arguments)
    }, i[r].l = 1 * new Date(); // The bit after the comma sets or updates the `l` property on the function with the timestamp of when this code was run.
    // From here fairly standard, load the GA script asynchronously
    a = s.createElement(o),
    m = s.getElementsByTagName(o)[0];
    a.async = 1;
    a.src = g;
    m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
于 2013-10-11T10:56:15.117 に答える