Angularjs。在标记<script> </script>中的html模板内发送变量

时间:2015-04-12 07:24:39

标签: javascript angularjs directive

我在指令html模板中有这个小部件代码。

<script type="text/javascript">
  _hcwp = window._hcwp || [];
  _hcwp.push({widget:"Stream", widget_id:10862, xid:{{_id}});
  (function() {
  if("HC_LOAD_INIT" in window)return;
  HC_LOAD_INIT = true;
  var lang = (navigator.language || navigator.systemLanguage || navigator.userLanguage || "en").substr(0, 2).toLowerCase();
  var hcc = document.createElement("script"); hcc.type = "text/javascript"; hcc.async = true;
  hcc.src = ("https:" == document.location.protocol ? "https" : "http")+"://w.hypercomments.com/widget/hc/10862/"+lang+"/widget.js";
  var s = document.getElementsByTagName("script")[0];
  s.parentNode.insertBefore(hcc, s.nextSibling);
  })();

此模板中包含变量{{_id}}。

但是当角度渲染此模板时,变量不会在模板内部发送。

在某些时候必须在寺庙内发送一个变量进行渲染?

我的指示:

app.directive('hyperComments', function($timeout) {
return {
    restrict: 'E',
    templateUrl: './templates/hc.html',
    replace: true,
    scope: {
      xid: '='
    },
    link: function(scope, element, attrs) {
    console.log('hello!');
    $timeout(function() {
        _hcwp = window._hcwp || [];
        _hcwp[0]= { widget:"Stream", widget_id: 28172, xid: 31241123};
        // HC.widget("Stream", _hcwp);

        (function() {
          // if("HC_LOAD_INIT" in window)return;
          // var HC_LOAD_INIT = true;
          console.log('in');
          var lang = (navigator.language || navigator.systemLanguage || navigator.userLanguage ||  "en").substr(0, 2).toLowerCase();
          var hcc = document.createElement("script"); hcc.type = "text/javascript"; hcc.async = true;
          hcc.src = ("https:" == document.location.protocol ? "https" : "http")+"://w.hypercomments.com/widget/hc/9345/"+lang+"/widget.js";
          var s = document.getElementsByTagName("script")[0];
          console.log(s);
          s.parentNode.insertBefore(hcc, s.nextSibling);
          })();
    }, 10000);

}
};

});

模板:

&LT; DIV&GT;     &LT; div id =“hypercomments_widget”&gt;     由HyperComments提供的评论 &LT; / DIV&GT;

1 个答案:

答案 0 :(得分:1)

字符串

中有不匹配的括号
_hcwp.push({widget:"Stream", widget_id:10862, xid:{{_id}});

无论如何,它在语法上都不正确并且会抛出错误,Angular不会解析<script>的内容。

此外,Angular不会处理模板中的<script>标记(安全问题或jqlite实现的过度简化),所以

app.directive('sample', function () {
  return {
    scope: {},
    controller: function ($scope, $window) {
      $scope.bar = 'test';
      $window.foo = $scope.bar
    },
    link: function (scope, element, attrs, ctrl) {
      var scriptInane = element.find("script")[0];
      var script = document.createElement("script");
      script.innerHTML = scriptInane.innerHTML;
      scriptInane.parentNode.replaceChild(script, scriptInane); 
    },
    template: '<h1>test</h1><script>console.log(foo); alert(foo);<\/script>'
  };
});

添加angular.forEach以支持多个脚本。如果你加载了jQuery,你可以用更简洁的方式做同样的事情。

或者您可以将<script>添加到另一个(因为已经混乱了DOM),您可以在其中指定全局变量,因此您可以跳过$window.foo =部分。

无论如何,它似乎是另一个不要在家里尝试这个&#39;实践中,可能有更好的方法来嵌入这个小部件。