5

我正在使用带有模板系统的 AngularJs。我想向每个模板添加特定的内联 javascript 脚本,为所选选项卡添加警报框(主页 | 列表 | 设置)

Html 呈现: 但是添加了 ng-scope,并且在您更改选项卡时没有任何警报。

<script type="text/javascript" class="ng-scope">alert("home")</script>

我在这里提供了示例:

http://bit.ly/HWcN1H

或在这里

带有 alert("template1") 的plunkr 示例出现在 template1.html 中,但呈现为

<script type="text/javascript" class="ng-scope">alert("template1")</script>
4

2 回答 2

12

我在 github上改进了 endorama 的解决方案

同样的过程。

  1. 创建 angular-loadscript.js(来自上面的链接)
  2. 在您的应用程序中使用“ngLoadScript”作为资源依赖项。

    var app = angular.module('YOUR_APP_NAME', ['ngResource','ngRoute', ...,'ngLoadScript']);

  3. 在您的部分使用 'text/javascript-lazy' 作为 MIME 类型。

一切都应该按要求工作:

/*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 s = document.createElement("script");
          s.type = "text/javascript";                
          var src = elem.attr('src');
          if(src!==undefined)
          {
              s.src = src;
          }
          else
          {
              var code = elem.text();
              s.text = code;
          }
          document.head.appendChild(s);
          elem.remove();
          /*var f = new Function(code);
          f();*/
        }
      }
    };
  });

}(angular));
于 2014-03-18T10:41:06.057 回答
0

通过编码指令有一个解决方案:

https://gist.github.com/endorama/7369006

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();
        }
      }
    };
  });

部分用法:

  <script type="text/javascript-lazy" >
alert("lazy loaded");
  </script>
于 2013-11-16T22:07:36.283 回答