• home > webfront > ECMAS > angularjs >

    angularjs判断对象object 为空——js确定空对象

    Author:[email protected] Date:

    空对象,在js里面不好判断,之前用jquey去判断,但是,项目,不想引入jquey,angularjs,就纯粹angular,……洁癖,没有办法!但是,判断空对象这么弄呢?纠结,然后发现……

    空对象,在js里面不好判断,之前用jquey去判断

    js是这么写的……

    if (!$.isEmptyObject($rootScope.payWallet)) {
        $scope.selectPayType(0);
    }

    但是,项目,不想引入jquey,angularjs,就纯粹angular,……洁癖,没有办法!

    但是,判断空对象这么弄呢?纠结,然后发现……

     if (angular.equals({},$rootScope.payWallet)) {
                        $scope.selectPayType(0);
                    }

    于是,整个世界都明亮了!


    转载本站文章《angularjs判断对象object 为空——js确定空对象》,
    请注明出处:https://www.zhoulujun.cn/html/webfront/ECMAScript/angularjs/2016_1202_7912.html