奇怪的cflocation行为:重定向到页面但不更新网址

我在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 Navigation并通过HTTP处理请求。

为此,请添加data-ajax="false"属性以form标签。 这将仅停止表单上的Ajax导航。

请注意 ,当Ajax关闭时,当您将当前表单页面移动到新页面时,您将失去转换,因此data-transition="slide"将不起作用。

<form action="" data-ajax="false" method="post" name="frmLogin" id="frmLogin">
链接地址: http://www.djcxy.com/p/60555.html

上一篇: Strange cflocation behavior: redirecting to page but not updating url

下一篇: Session in Coldfusion