我已经读过初始化Parse的好方法是创建模块。我做了以下代码,但是当我运行程序时,Parse似乎没有初始化。我是否遗漏了关于在模块上设置运行功能的基本知识?
以下是代码:
var myApp = angular.module('myApp', []);
myApp.config(function ($routeProvider, $locationProvider) {
})
.run(function($rootScope) {
Parse.initialize("myKey", "myKey");
$rootScope.sessionUser = Parse.User.current();
});