Ember.js 余烬简单身份验证';s SessionAuthenticationSuccessed未激发

Ember.js 余烬简单身份验证';s SessionAuthenticationSuccessed未激发,ember.js,ember-simple-auth,Ember.js,Ember Simple Auth,我想在我的applicationRoute中使用sessionauthenticationsuccessed操作,但不知何故它没有启动 我检查并发现触发器正在被调用,但实际上没有被触发,我的自定义sessionauthenticationsuccessed操作在applicationRoute中也没有被触发。(我还尝试调用\u super并对我的自定义操作进行注释,以确保默认的mixin操作没有被覆盖) 我正在使用ember cli0.1.4和ember简单身份验证0.7.2与标准oauth2身

我想在我的
applicationRoute
中使用
sessionauthenticationsuccessed
操作,但不知何故它没有启动

我检查并发现触发器正在被调用,但实际上没有被触发,我的自定义
sessionauthenticationsuccessed
操作在
applicationRoute
中也没有被触发。(我还尝试调用
\u super
并对我的自定义操作进行注释,以确保默认的mixin操作没有被覆盖)

我正在使用
ember cli
0.1.4
ember简单身份验证
0.7.2
与标准oauth2身份验证程序结合使用。我正在运行一个由ember和HTMLBars组合而成的金丝雀版本。Signin工作正常,只是没有触发
会话身份验证成功
(可能还有其他我不知道的操作)

申请途径:

// app/pods/application/route.js
import Ember from 'ember';
import SimpleAuthApplicationRouteMixin from 'simple-auth/mixins/application-route-mixin';

export default Ember.Route.extend(SimpleAuthApplicationRouteMixin);
控制器:

// app/pods/signin/controller.js
import Ember from 'ember';
import LoginControllerMixin from 'simple-auth/mixins/login-controller-mixin';

export default Ember.Controller.extend(LoginControllerMixin, {
  authenticator: 'simple-auth-authenticator:oauth2-password-grant'
});
登录模板:

// app/pods/signin/template.hbs
<form {{action 'authenticate' on='submit'}}>
  {{input value=identification class="form-control" placeholder='Enter your email address' type='text'}}
  {{input value=password  class="form-control"  placeholder='Enter Password' type='password'}}
  <button type="submit" class="btn">Log in</button>
</form>
//app/pods/signin/template.hbs
{{input value=identification class=“表单控制”占位符=“输入您的电子邮件地址”type='text'}}
{{input value=password class=“表单控制”占位符='Enter password'类型='password'}
登录

您是否可以添加更多详细信息(配置、使用的身份验证程序、授权人等,在哪种情况下操作不会触发)?此外,您可能正在使用ember cli 0.1.4,因为这是最新版本?我使用文档中描述的默认设置
simpleuthapplicationroutemixin
LoginControllerMixin
'simple-auth-authenticator:oauth2 password grant'作为身份验证器。注册很有效。我确实运行了一个ember icw HTMLBars的金丝雀版本。如果你想让人们帮助你,你真的需要尽可能多地添加细节(代码等)。还有,在什么确切的版本中没有触发该动作?我理解Marcow,我补充了更多细节。我希望我恢复到默认设置,并声明已调用触发器,但从未到达操作,这一事实会敲响某种警钟:)