<b ng-bind="getDays({{x.date}})"></b>/*正常*/
<b >getDays({{x.date}})</b> /*不显示*/
<b >{{getDays({{x.date}})}}</b> /*报错*/
<b >{{getDays(x.date)}}</b> /*不显示*/
$scope.getDays=function(date){
return date+"1";
}
<b ng-bind="getDays({{x.date}})"></b>/*正常*/
<b >getDays({{x.date}})</b> /*不显示*/
<b >{{getDays({{x.date}})}}</b> /*报错*/
<b >{{getDays(x.date)}}</b> /*不显示*/
$scope.getDays=function(date){
return date+"1";
}