Ember:SimpleAuth не определено с помощью ember-simple-auth
Я новичок в JaveScript и HTML. Глядя на существующий код и борясь с ниже уже довольно давно. Ниже вывод консоли. Получение ошибки Uncaught в строке ниже в моем коде.
App.CustomAuthenticator = Ember.SimpleAuth.Authenticators.Base.extend ({
Ember.SimpleAuth отображается как неопределенное.
DEBUG: ------------------------------- ember.js:3461
DEBUG: Ember : 1.4.0 ember.js:3461
DEBUG: Ember Data : 1.0.0-beta.7+canary.b45e23ba ember.js:3461
DEBUG: Handlebars : 1.1.2 ember.js:3461
DEBUG: jQuery : 1.9.1 ember.js:3461
DEBUG: Ember Simple Auth : 0.6.4 ember.js:3461
DEBUG: ------------------------------- ember.js:3461
Uncaught TypeError: Cannot read property 'Authenticators' of undefined
Ценим помощь
1 ответ
Ember Simple Auth теперь определяет свой глобальный SimpleAuth
и не прикрепляется к Ember
глобальный, так что вам нужно изменить код на:
App.CustomAuthenticator = SimpleAuth.Authenticators.Base.extend({
…
})