在AngularJS模块内运行初始化Parse函数

时间:2015-11-14 21:43:50

标签: javascript angularjs parse-platform angularjs-module

我已经读过初始化Parse的好方法是创建模块。我做了以下代码,但是当我运行程序时,Parse似乎没有初始化。我是否遗漏了关于在模块上设置运行功能的基本知识?

以下是代码:

var myApp = angular.module('myApp', []);

myApp.config(function ($routeProvider, $locationProvider) {
    })
    .run(function($rootScope) {
        Parse.initialize("myKey", "myKey");
        $rootScope.sessionUser = Parse.User.current();
    });

0 个答案:

没有答案