如何每1分钟更新一次ng-bind-html?

时间:2016-02-07 22:23:07

标签: javascript angularjs

我的项目由Angular Js运行。 我如何每1分钟更新一次元素?

这是我的元素

<strong ng-class="{'red-text' : main.redBgArray[$index] == 'red-text'}" ng-bind-html='main.minuteStateCheck(listViewOrder.status,listViewOrder.ordered_at,listViewOrder.accepted_at,listViewOrder.ready_in_mins,$index)'/>

所以这是我的功能。

vm.minuteStateCheck = function(status,ordered_at,accepted_at,ready_in_mins,index){

    if(status === "pending"){

        vm.ordersStatusRedTextNum = index;

        var differentDayOutput = vm.differenceInDays(ordered_at)

        if(vm.miliSecondCheck > 300000){
            vm.redBgArray[index] = "red-text";
        }

        return differentDayOutput;
    } else 
    if(status === "accepted"){

        var differentDayOutputForAccepted = vm.differentDayOutputForAccepted(accepted_at,ready_in_mins);

        if(vm.miliSecondCheck > 0){
            vm.redBgArray[index] = "red-text";
        }


        return differentDayOutputForAccepted;
    }

}

那我怎么能每1分钟更新一次我的元素呢?

谢谢!

0 个答案:

没有答案