我遇到了这个问题,由于某种奇怪的原因,它无法正确渲染我的代码,并且会向您展示我的代码。所以这是我来自 Controller(AngularJS) 的代码:
$scope.$watch('creatorValue', function(current, original) {
var htmlVal = document.getElementById('creatorValue').innerHTML;
console.log(original);
htmlVal = marked(original);
});
这是一个最小的 HTML:
<div class="topic-sentence">
<p class="topic-text" id="creatorValue">{{creatorValue}}</p>
</div>
嗯,是的,它记录了正确的事情......然后它必须显示正确的显示吗?
不,正如您在上面看到的,所有代码都在一行中,并且没有任何“标记”。如果你们想查看更多代码,请在下面的评论中告诉我。帮助将不胜感激。