我需要你的幫助!我正在嘗試使用角度導入json文件。唯一的問題是,json文件是從其他網站導入的,html標籤顯示爲普通文本。這裏是我的問題,有沒有機會使這些標籤正常的HTML不是一個可見的文本?注入json使用角度與工作html標籤
HTML:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.min.js"></script>
<script src="maincontroller.js" type="text/javascript"></script>
</head>
<body bgcolor="lightblue">
<div ng-app="mainApp" ng-controller="mainController">
<div id="content" style="width: 500px; height: 500px; background-color: green; ">
<div ng-repeat="content in contents">
<h2>{{content.title}}</h2>
<p>{{content.date}}</p>
<p>{{content.info}}</p>
<p>{{content.content}}</p>
<p>{{content.url}}</p>
</div>
</div>
</div>
</body>
</html>
maincontroller.js
var myapp=angular.module('mainApp',['ngSanitize']);
myapp.controller('mainController',function($scope,$http){
$http.get('/WP/?json=get_recent_posts').then(function(response, date){
$scope.contents = response.data.posts;
alert("success");
console.log(response)
}, function(error){
$scope.contents = [{title:"<h4> Error </h4>",date:"<p> JSON invalid </p>"}];
alert("error");
console.log(response)
})
});
無法從您的描述中理解,您到底想要什麼。一些例子會很好。 –