Everyauth文档和示例应用程序提及:
// a string of html; OR the name of the jade/etc-view-engine view
.loginView('login.jade')
注意login.jade有一些Everyauth特定的参数,Everyauth似乎神奇地提供了这些参数:
#login
label(for=everyauth.password.loginFormFieldName) Login
input(type='text', name=everyauth.password.loginFormFieldName, value=email)
#password
label(for=everyauth.password.passwordFormFieldName) Password
input(type='password', name=everyauth.password.passwordFormFieldName)
#submit
input(type='submit') Login
我的应用程序中用户登录的视图执行各种操作,并非所有操作都与登录有关。因此,我不希望在每个用户的同时配置我的登录视图。
我可以省略.loginView()并设置稍后显示登录表单的视图吗?
感谢。