Angularjs 解析角补丁不再工作了

Angularjs 解析角补丁不再工作了,angularjs,parse-platform,parse-server,Angularjs,Parse Platform,Parse Server,我很高兴使用parse angular patch。大家都知道parse.com将在几个月后关闭。为了在parse开源服务器上使用parse SDK,您需要将javascript SDK版本升级到最新版本(1.9.2) 今天我尝试将parse javascript版本升级到1.9.2,但我的应用程序停止工作。我犯了以下错误 parse-angular.js:62 Uncaught TypeError: Cannot read property 'prototype' of undefined(

我很高兴使用parse angular patch。大家都知道parse.com将在几个月后关闭。为了在parse开源服务器上使用parse SDK,您需要将javascript SDK版本升级到最新版本(1.9.2)

今天我尝试将parse javascript版本升级到1.9.2,但我的应用程序停止工作。我犯了以下错误

parse-angular.js:62 Uncaught TypeError: 
Cannot read property 'prototype' of undefined(anonymous function) 
@ parse-angular.js:62(anonymous function) 
@ parse-angular.js:60e 
@  angular.js:4142(anonymous function) 
@ angular.js:4065s 
@ angular.js:323ab  
@ angular.js:4064d 
@ angular.js:1447tc 
@ angular.js:1470Jd 
@ angular.js:1415(anonymous function) 
@ angular.js:26063j 
@ jquery.js:3094fireWith 
@ jquery.js:3206ready 
@ jquery.js:3412I 
@ jquery.js:3428
这是我的应用程序声明

angular.module('app',[
    ...
    'parse-angular',
    'parse-angular.enhance',
    ...
])

我使用的是1.3.14。有人尝试使用parse js sdk迁移现有的angular v1代码来解析服务器基础结构,但成功了。若要修复上述错误,请提供任何帮助。

我今天遇到了同样的问题,并发现:


这似乎适用于新的parse SDK。

我从这个问题中获得了使用parse angular的想法。