テンプレートで埋め込みスクリプトを使用する必要がありますが、スクリプトを実行する前に画像へのパスを動的に挿入します。
画像パスをスコープ変数として構築するディレクティブを作成し、これを使用してタグ$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>