我试图在我的angular.js应用程序上放置广告,我已经做了一些阅读,发现不可能复制和粘贴普通的adsense代码.
我听说你应该把它包装成一个带有转义的指令,唯一可以找到的例子是另一个Stackoverflow文章:
AngularJs and AddThis social plugin
有人可以帮助您指导如何使用Google Adsense进行此操作吗?
您应该对adSense脚本执行包装指令,如下所示:
原文链接:https://www.f2er.com/angularjs/140600.html<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异步代码.