我正在尝试让google adsense在我正在处理的网站上的活动中工作,但似乎无法让它工作。广告被包裹在角度ng重复对象内。你可以在sparkmyinterest.com看到它。
这是一个工作示例Angular.js & Adsense
这是我的嘲笑:
<div class="col-xs-12 col-md-6 col-lg-4" ng-repeat="event in events" ng-mouseover="showSocial(event)">
<div class="thumbnail event-box" ng-show="event.is_ad">
<div style="color: grey; text-align: center">
Advertisement
</div>
<div style="margin-left: auto; margin-right: auto; margin-top: 100px; text-align: center">
<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:200px;height:200px"
data-ad-client="ca-pub-00000000000"
data-ad-slot="0000000"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
</div>
</div>
在控制器中我有:
sparkApp.directive('myAdSense', function() {
return {
restrict: 'A',
transclude: true,
replace: true,
template: '<div ng-transclude></div>',
link: function ($scope, element, attrs) {}
}
});
奇怪的是,这似乎偶尔会起作用,但不是很一致。
另外:有人知道我如何测试广告是否在localhost上运行?调试这个问题非常困难。
谢谢。