我正在尝试在Simple Auth的login-controller-mixin中调用authenticate方法。
这是我的控制器:
ApplicationController = Ember.Controller.extend(
LoginControllerMixin,
authenticator: 'simple-auth-authenticator:devise'
actions:
relayAuthentication: (id, password) ->
@_actions.authenticate()
)
@_actions.authenticate()
似乎确实有用,但我的背景却搞砸了。
更一般地说,这是调用混合到Ember控制器的方法的正确方法吗?
以下是我最终要做的事情:
我有一个处理登录的组件。这是模板:
{{#if isFormOpen}}
<div class="row">
<form class="large-4 columns" {{action 'authenticate' on='submit'}}>
<label for="identification">Login</label>
{{input id='identification' placeholder='Enter Login' value=identification}}
<label for="password">Password</label>
{{input id='password' placeholder='Enter Password' type='password' value=password}}
<button type="submit">Login</button>
<button type="button" {{action 'toggleForm'}}>Cancel</button>
</form>
</div>
{{else}}
{{#if session.isAuthenticated}}
<a class="button tiny" {{action 'invalidateSession'}}>Logout</a>
{{else}}
<a class="button tiny" {{action 'toggleForm'}}>Login</a>
{{/if}}
{{/if}}
这是组件本身:
`import Ember from 'ember'`
LoginComponent = Ember.Component.extend(
actions:
toggleForm: ->
@toggleProperty('isFormOpen')
authenticate: ->
@sendAction('action', @identification, @password)
)
`export default LoginComponent`
验证操作在使用时传递给组件({{login-form action="authenticate"}}
)
该验证方法来自应用程序控制器上的Simple Auth mixin。
我不确定如何给出原始的身份验证方法(来自mixin)它想要什么,即:context。
答案 0 :(得分:1)
不,不是。如果它是一种方法,你只需按正常方式调用它。如果它是一个动作,你只需以正常方式发送它。
actions:
relayAuthentication: (id, password) ->
@send 'authenticate', id, password
但在这种情况下,为什么不直接在模板中指定authenticate
操作而不是通过relayAuthentication
?