我尝试在我的模态下做到这一点:
<td colspan="4" class="text-center">{{$rootScope.getDate(proposal.date_from)}}</td>
<td colspan="4" class="text-center">{{getDate(proposal.date_to)}}</td>
第一个TD无需输出第二个TD输出{{getDate(proposal.date_to)}}作为字符串如何正确调用功能?它们在两个示波器上定义
在您的控制器中,将您的getDate
函数连接到$scope
,它应该看起来像这样:$scope.getDate = function(date) { ... }
。之后,您可以使用此格式调用getDate
:<td colspan="4" class="text-center">{{getDate(proposal.date_to)}}</td>
。