您可以使用’hasOwnProperty’来检查对象是否具有特定的属性.
原文链接:https://www.f2er.com/angularjs/142806.htmlif($scope.test.hasOwnProperty('bye')){ // do this }else{ // do this then }
这是一个jsFiddle demo
希望有帮助