我试图用angular-moment插件显示angularJS的相对时间。
当我直接在我的html模板上添加代码时,它正在工作并显示正确的相对时间
<span am-time-ago='currentTime' class='item-note' ></span>
但是如果我使用ng-bind-html并尝试使用范围变量来显示相对时间,那么它就不起作用了。这是我用过的代码。
//html
<div id="{{parameterGuid}}" ng-bind-html="userChat">
</div>
//js
$scope.userChat = $sce.trustAsHtml("<div am-time-ago='currentTime' class='item-note'></div>");
根据我的要求,我需要使用ng-bing-html,那么有人可以建议如何在这种情况下显示相对时间吗?