我需要点击提交或登录按钮,如何使用 meteor js 导航到具有相同窗口的新页面。请帮我怎么写。 当用户提交表单页面时,导航到 admindetails.html页面。我正在使用路由器包,下面是html页面和客户端代码。我的意图是在用户登录在动态同一窗口中加载另一个模板后。请帮助我。
Here is html page
<template name="body">
<div class="bgbody">
<div align="center">
<form id="login-form" action="/admindetails">
<table>
<p class="admin">Admin Login</p>
<tr>
<td><p for="username">Admin Name</p></td>
<td><input type="text" id="username" name="username" placeholder="UserName"></td>
</tr>
<tr>
<td><p for="password">Password</p></td>
<td><input type="password" id="pwd" name="password" placeholder="password"></td>
</tr>
<td></td><td><input class="btn btn-success" type="submit" value="Log In"></td>
</table>
</form>
</div>
</div>
</template>
这是客户端代码
if (Meteor.isClient)
{
Meteor.Router.add({
'/admindetails':'admindetails'
})
Template.body.events
({
'submit #login-form' : function (e,t)
{
/* template data, if any, is available in 'this'*/
if (typeof console !== 'undefined')
console.log("You pressed the button");
e.preventDefault();
/*retrieve the input field values*/
var email = t.find('#username').value
, password = t.find('#pwd').value;
console.log(email);
Meteor.loginWithPassword(email, password, function (err)
{
if (err)
{
console.log(err);
alert(err.reason);
Session.set("loginError", true);
}
else
{
console.log(" Login Success ");
Meteor.Router.to("/admindetails");
}
});
}
});
}
答案 0 :(得分:5)
如果您使用推荐的Iron Router,则使用go
方法:
Router.go('/articles/example');
或:
Router.go('showArticle', {name: 'example'});
如果您使用旧Router,请使用:
Meteor.Router.to('/articles/example');
如果您不使用任何路由器,请立即开始。在此期间,使用石器时代方法:
window.location.href = '...';