7

我想将 Google Adsense 添加到我的 Angular 应用程序中,我在这里找到了一个工作示例。

问题是我无法在模板中添加 html,因为我在脚本标签 ( <script type="text/ng-template"....)中加载模板,script而 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模板想要的行为。内部JS不执行)。还有别的办法吗?

4

1 回答 1

3

谷歌搜索: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

有很多方法。

于 2015-03-27T16:05:12.160 回答