如何在AngularJS中使用动态构建的JSON对象创建application/ld+json
script
标记。
这就是我需要脚本标签的样子
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Place",
"geo": {
"@type": "GeoCoordinates",
"latitude": "40.75",
"longitude": "73.98"
},
"name": "Empire State Building"
}
</script>
我尝试了以下代码,但我无法让它工作:
HTML
<div ng-controller="TestController">
<script type="application/ld+json">
{{jsonId|json}}
</script>
{{jsonId|json}}
</div>
控制器
var myApp = angular.module('application', []);
myApp.controller('TestController', ['$scope', function($scope) {
$scope.jsonId = {
"@context": "http://schema.org",
"@type": "Place",
"geo": {
"@type": "GeoCoordinates",
"latitude": "40.75",
"longitude": "73.98"
},
"name": "Empire State Building"
};
}]);
脚本标记内的表达式不会执行。 脚本标记外部的表达式正确执行并显示JSON
请参阅jsfiddle
答案 0 :(得分:18)
喝完一杯咖啡后,我记得有一项$sce
服务trustAsHtml
功能。
我创建了一个接受json
参数的指令,以便于重复使用
请参阅以下更新和工作代码:
HTML
<div ng-controller="TestController">
<jsonld data-json="jsonId"></jsonld>
</div>
的Javascript
var myApp = angular.module('application', []);
myApp.controller('TestController', ['$scope', function($scope) {
$scope.jsonId = {
"@context": "http://schema.org",
"@type": "Place",
"geo": {
"@type": "GeoCoordinates",
"latitude": "40.75",
"longitude": "73.98"
},
"name": "Empire State Building"
};
}]).directive('jsonld', ['$filter', '$sce', function($filter, $sce) {
return {
restrict: 'E',
template: function() {
return '<script type="application/ld+json" ng-bind-html="onGetJson()"></script>';
},
scope: {
json: '=json'
},
link: function(scope, element, attrs) {
scope.onGetJson = function() {
return $sce.trustAsHtml($filter('json')(scope.json));
}
},
replace: true
};
}]);
这是脚本输出的图像
请参阅更新的jsfiddle
答案 1 :(得分:1)
Tjaart van der Walt的答案在Google Test Tool中对我不起作用。它确实与真正的爬虫一起工作。 所以我发现了另一个“老派”解决方案,它可以解决问题:
HTML
<script type="application/ld+json" id="json-ld-music-group"></script>
角
var schemaOrg = angular.toJson({
'@context': 'http://schema.org',
'@type': 'MusicGroup',
...
});
angular.element(document).ready(function() {
var jsonLd = angular.element(document.getElementById('json-ld-music-group'))[0];
jsonLd.innerHTML = schemaOrg;
});