我正在尝试使用JQuerys验证插件进行登录屏幕。我想使用远程选项来检查我的数据库中是否找到了用户名和密码。我有一个字段的远程调用工作,但无法弄清楚如何将两个字段捆绑到一个远程调用。这可能吗?
这是我正在做的精简版(完全标准,可能无法正常工作,因为我从我的版本中移除/更改了一些东西以使其更小):
表格代码(在Jade中):
form#loginForm.users(method='post', action='/login')
fieldset
legend Login
.clearfix
.input
input.required(id='username', name='user[username]', type='text', remote='/checkUsername/')
.clearfix
.input
input.required(id='password', name='user[password]', type='password')
.actions
input.btn.primary(type='submit', value='Login')
然后简单地说:
$('#loginForm').validate()