javascript – AngularJS和adsense

前端之家收集整理的这篇文章主要介绍了javascript – AngularJS和adsense前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的角度应用程序中添加Google Adsense,我找到了一个工作示例 here.

问题是我无法在模板中添加html,因为我在脚本标记中加载模板(< script type =“text / ng-template”....),adsense的脚本标记会破坏模板. 我尝试将模板移动到指令:

app.directive('Adsense',function() {
  return {
    restrict: 'A',transclude: true,replace: true,template: '<div><script type="text/javascript" async="async" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>' +
              '<ins class="adsbygoogle" style="display: inline-block; width: 234px; height: 60px;" ' +
              'data-ad-client="ca-pub-xxxxx" data-ad-slot="xxxxx"></ins>' +
              '<script type="text/javascript">(adsbygoogle = window.adsbygoogle || []).push({});</script></div>',link: function ($scope,element,attrs) {}
  }
})

但是当指令设置时,javascript不会被执行(这似乎是想要的行为AngularJS template. Inner JS not execute).还有另外一种方法吗?

解决方法

谷歌搜索https://gist.github.com/endorama/7369006
/*global angular */
(function (ng) {
  'use strict';

  var app = ng.module('ngLoadScript',[]);

  app.directive('script',function() {
    return {
      restrict: 'E',scope: false,link: function(scope,elem,attr) {
        if (attr.type=='text/javascript-lazy') {
          var code = elem.text();
          var f = new Function(code);
          f();
        }
      }
    };
  });

}(angular));

然后在您的模板上:

<script type="text/javascript-lazy">
  console.log(true);
</script>

使用这样的东西,或修改加载一些指定文件或使用https://github.com/ocombe/ocLazyLoad

有很多方法.

原文链接:https://www.f2er.com/js/156579.html

猜你在找的JavaScript相关文章