TypeError:$ scope.apply不是函数

mze*_*eba 37 javascript angularjs

我试图通过检索它后呈现联系人列表rdflib.js.它正确加载并将其保存在范围内的列表中.

但我无法渲染正弦值$ scope不更新,似乎我$scope.apply()在错误的地方调用.发生错误是因为我在angular之外调用它,但我故意在角度context(nowOrWhenFetched)之外的函数内调用它,所以对我来说没有意义.任何帮助?

$scope.load = function () {
    //$scope.getContactsList();
    var g = $rdf.graph();
    var f = $rdf.fetcher(g);

    f.nowOrWhenFetched($scope.path + '*',undefined,function(){

    var DC = $rdf.Namespace('http://purl.org/dc/elements/1.1/');
    var RDF = $rdf.Namespace('http://www.w3.org/1999/02/22-rdf-syntax-ns#');
    var LDP = $rdf.Namespace('http://www.w3.org/ns/ldp#');
    //var myOntology = $rdf.Namespace('http://user.pds.org/ontology/'); 
    var VCARD = $rdf.Namespace('http://www.w3.org/2006/vcard/ns#');

    var evs = g.statementsMatching(undefined, RDF('type'), VCARD('Individual'));
    if (evs != undefined) {
        for (var e in evs) {
            var id = evs[e]['subject']['value'];
            var fullname = g.anyStatementMatching(evs[e]['subject'], VCARD('fn'))['object']['value'];
            var email = g.anyStatementMatching(evs[e]['subject'], VCARD('hasEmail'))['object']['value'];
            var phone = g.anyStatementMatching(evs[e]['subject'], VCARD('hasTelephone'))['object']['value'];

            var contact = {
                id: id.slice(id.length-1),
                Name: fullname,
                Email: email,
                Phone: phone 
            };

            $scope.contacts.push(contact);
        }

    }

    $scope.apply();

    });

};
Run Code Online (Sandbox Code Playgroud)

Mic*_*mza 139

功能是$apply(),与$.

  • 要明确他的意思是`$范围.$ apply` (17认同)
  • 所以它将是$ scope.$ apply() (3认同)