0

テンプレートで埋め込みスクリプトを使用する必要がありますが、スクリプトを実行する前に画像へのパスを動的に挿入します。

画像パスをスコープ変数として構築するディレクティブを作成し、これを使用してタグ$interpolateに挿入しました。<script>

現在(文字列として)保存されている参照$scope.tagは、スクリプトタグとして挿入および解釈/実行したいコードです。

代わりに、スクリプト タグがテンプレートに文字列として追加され、実際にスクリプト タグ文字列をスクリプト タグとして出力するために必要な追加の手順がわかりません。

テンプレートは次のとおりです (ディレクティブでは として参照されますtemplateUrl)。

<div>
  {{ tag }}
</div>

指令:

'use strict';

angular.module('App')
  .directive('sslLogo', function($location, $interpolate) {
    return {
      replace: false,
      restrict: 'AE',
      templateUrl: '/views/partials/ssl-logo.html',
      controller: function($scope, $element, $attrs) {
        // Outputs the full base url (http:// ... .com/ )
        var base_url = '';
            base_url += $location.protocol() + '://';
            base_url += $location.host();

            if ( $location.port() ) {
              base_url += ':' + $location.port();
            }

        // Add the path to the image asset.
        $scope.logo_url = base_url + "/images/static/comodo-wildcardssl.png";

        // Interpolate this path into the script tag and then store the script tag to be output to the template.
        $scope.tag = $interpolate('<script type="text/javascript">TrustLogo("{{ logo_url }}", "SCCC", "none");</script>', false, true)({ logo_url: $scope.logo_url });
      },
      link: function(scope, element, attrs) {}
    };
  });

参考までに、この時点で、$scope.tag変数には次の文字列が含まれます。

<script type="text/javascript">TrustLogo("http://localhost:9000/images/static/comodo-wildcardssl.png", "SCCC", "none");</script>
4

1 に答える 1

0

のようだ:

...
link: function(scope, element, attrs) {
  element.append( scope.tag );
}
...

jQuery を使用して script タグをディレクティブの要素に追加します。

于 2014-07-31T23:57:50.343 に答える