Angular.js和Adsense

我正在尝试在我的angular.js应用上投放广告,并且我已经完成了一些阅读,发现无法复制和粘贴正常的AdSense代码。

我听说你应该“用一个包含一个包含的指令包装它”,我能找到的另一个例子是另一个Stackoverflow文章:AngularJs和AddThis社交插件

有人可以帮助指导有关如何使用Google Adsense做这件事吗?


你需要创建一个指令

yourApp.directive('ads', function() {
    return {
        restrict: 'A',
        templateUrl: 'partiels/adsTpl',
        controller: function(){
            (adsbygoogle = window.adsbygoogle || []).push({});
        }
    };
});

在我的情况下用您的广告代码创建一个模板“partiels / adsTpl.html”

<ins class="adsbygoogle"
 style="display:inline-block;width:300px;height:250px"
 data-ad-client="ca-pub-00000000"
 data-ad-slot="000000"></ins>

将指令添加到您的页面

 <div data-ads></div>

在angularjs之前将adSense js调用放在主页的头部

<head>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
....

等瞧,这对我来说是完美的


您应该像这样对adSense脚本执行包装指令...

<div data-my-ad-sense>
  <!-- Google AdSense -->
  <script async src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  <ins class="adsbygoogle"
       style="display:inline-block;width:728px;height:90px"
       data-ad-client="ca-pub-0000000000"
       data-ad-slot="0000000000"></ins>
  <script>
  (adsbygoogle = window.adsbygoogle || []).push({});
  </script>
</div>

并将此指令添加到您的指令中...

directive('myAdSense', function() {
  return {
    restrict: 'A',
    transclude: true,
    replace: true,
    template: '<div ng-transclude></div>',
    link: function ($scope, element, attrs) {}
  }
})

这是adSense异步代码。


我不确定按照AdSense条款进行以下操作是否有效。

在更改网址之前删除所有与Google相关的变量

Object.keys(window).filter(function(k) { return /google/.test(k) }).forEach(
        function(key) {
            delete(window[key]);
        }
    );
链接地址: http://www.djcxy.com/p/90357.html

上一篇: Angular.js & Adsense

下一篇: Localising a UILabel with attributed string from a Storyboard