我编写了一个自己的安全类,派生自安全模块。我的路线表的一部分如下所示:
* /authenticate Security.authenticate
我的模板如下所示:
<form action="@{Security.authenticate()}" method="POST">
<label for="user">E-Mail:</label>
<input type="text" name="email" id="email" />
<label>password:</label> <input type="password" name="password" size="19"/>
<input type="submit" value="Signin" />
</form>
我收到以下异常:
找不到能够调用操作 Security.authenticate 的路由。
在 /app/views/Security/index.html 中(大约第 11 行)
<form action="@{Security.authenticate()}" method="POST">