我使用wordpress API和範圍輸出angularjs我有問題來解析返回的CSS。AngularJS解析CSS代碼
對於HTML解析我一直在使用
<div ng-repeat ="article in post">
<div ng-bind-html="article.content">
{{ article.content }}
</div>
</div>
angular.module('blancAppApp')
.controller('SlugCtrl', function ($scope, $http, $routeParams) {
$http.get('/wp-json/posts/?type=post&type=page&filter[name]=' + $routeParams.slug).success(function(res){
$scope.post = res;
return $scope.post;
console.log($scope.post);
});
});
這一項工作正常,但在CSS我有以下的原始輸出
#gallery-1 { margin: auto; } #gallery-1 .gallery-item { float: left; margin-top: 10px; text-align: center; width: 50%; } #gallery-1 img { border: 2px solid #cfcfcf; } #gallery-1 .gallery-caption { margin-left: 0; }
JSON
\n<style type='text\/css'>\n#gallery-1 {\nmargin: auto;\n}\n#gallery-1 .gallery-item {\nfloat: left;\nmargin-top: 10px;\ntext-align: center;\nwidth: 50%;\n}\n#gallery-1 img {\nborder: 2px solid #cfcfcf;\n}\n#gallery-1 .gallery-caption {\nmargin-left: 0;\n}\n<\/style>\n
什麼是你想實現換行(\ n)的?詳細說明,舉例說明。 – 2014-10-28 20:17:38
我做了一個更新 – fefe 2014-10-28 20:21:53
,看起來像有效的CSS給我。我仍然不明白你想要達到的目標,你的代碼是什麼,你期望它做什麼以及做什麼。 – 2014-10-28 20:25:53