未捕获的TypeError:无法读取属性'字段'未定义的

时间:2017-04-03 15:55:14

标签: angularjs ionic-framework

我正在使用离子1并使用$ cordovaContacts插件来获取所有联系人。使用这种方法

   $scope.getAllContacts = function() {
        $cordovaContacts.find({ filter: '' }).then(function(allContacts) { //omitting parameter to .find() causes all contacts to be returned
            $scope.contacts = allContacts;
            console.log(JSON.stringify(allContacts));
        });
    };

但是当我运行应用程序时,我面临此错误

  

未捕获的TypeError:无法读取属性'字段'未定义的       在Object.find(http://192.168.15.37:8100/lib/ngCordova/dist/ng-cordova.min.js:7:23415)       在Scope。$ scope.getContactList(http://192.168.15.37:8100/js/controllers/home.js:47:30)       at fn(eval at compile(http://192.168.15.37:8100/lib/ionic/js/ionic.bundle.js:27638:15),:4:233)       在Scope.scope。(匿名函数)[as $ onRefresh](http://192.168.15.37:8100/lib/ionic/js/ionic.bundle.js:53624:20)       在开始时(http://192.168.15.37:8100/lib/ionic/js/ionic.bundle.js:60495:22

0 个答案:

没有答案