我在 ColdFusion 中有一个基本的移动登录页面,允许用户输入用户名和密码并登录。成功登录后,页面将使用 cflocation 重定向到主页。但是,当页面成功重定向到主页时,它仍然在地址栏中显示登录页面 URL。我们在整个 Web 应用程序中多次使用 cflocation,我以前从未遇到过这种行为,也无法弄清楚可能导致它的原因。
页面代码的要点:
<cfparam name="invalidLogin" default="false">
<cfif cgi.REQUEST_METHOD EQ "POST" AND isDefined("form.email") AND isDefined("form.password") and len(trim(form.email)) and len(trim(form.password))>
<!--- call the login method --->
<cfinvoke component="login" method="userlogin" returnvariable="userData">
<cfinvokeargument name="userName" value="#form.email#">
<cfinvokeargument name="password" value="#form.password#">
</cfinvoke>
<cfif userData.isLoggedIn>
<cflocation url="index.cfm" addtoken="no">
</cfif>
<cfset invalidLogin = true />
</cfif>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Log In</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/jquery.mobile.structure-1.3.2.css" rel="stylesheet" type="text/css" />
<link href="css/jquery.mobile-1.3.2.css" rel="stylesheet" type="text/css" />
<link href="css/common.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.3.2.js"></script>
<script type="text/javascript" src="js/common.js"></script>
</head>
<body>
<div data-role="page" class="bg-color">
<div class="container">
<div data-role="content">
<div class="article">
<div class="logoDiv">
<img src="img/companyLogo.png" />
</div>
</div>
<form action="" method="post" name="frmLogin" id="frmLogin" class="margin-top" data-transition="slide">
<div>
<input type="text" name="email" id="email" placeholder="Username">
<input type="password" name="password" id="password" placeholder="Password">
</div>
<cfif invalidLogin><div>Invalid Login</div></cfif>
<div>
<input type="submit" value="Log In" data-theme="b" />
</div>
</form>
</div>
</div>
</div>
</body>
</html>
为了防止 jQuery Mobile 通过 Ajax 处理带有重定向的表单,您需要关闭 Ajax 导航并通过 HTTP 处理请求。
为此,请将data-ajax="false"
属性添加到form
标记。这将仅停止窗体上的 Ajax 导航。
请注意,当将当前表单页面移动到新页面时,由于 Ajax 已关闭,您将失去过渡,因此data-transition="slide"
将不起作用。
<form action="" data-ajax="false" method="post" name="frmLogin" id="frmLogin">