我正在尝试使用 Ember Simple Auth 处理错误消息,我正在使用设计扩展。
文件:app/controllers/login.js
import Ember from 'ember';
import LoginControllerMixin from 'simple-auth/mixins/login-controller-mixin';
export default Ember.Controller.extend(LoginControllerMixin, {
authenticator: 'simple-auth-authenticator:devise',
identification: null,
password: null,
loginError: false,
isSubmitting: false,
actions: {
authenticate: function() {
var data = this.getProperties('identification', 'password');
this._super(data);
this.set('password', null);
this.setProperties({
loginError: true,
loginResponse: 'login error'
});
}
}
});
目前我总是收到错误消息。我不知道如何仅在发生错误时显示它。我试过了
this._super(data).then(function({
// Error handler
});
但后来我收到错误“_super() 未定义”。