重定向到应用程序页面登录后不在同一服务器上 - javascript

我有一个带有登录屏幕的HTML5应用。当我输入详细信息时,它将发送到外部服务器,运行一个名为login.php的php文件并检查详细信息。

如果详细信息正确,我需要它重定向回HTML5应用程序到index.html文件上ID为#home的页面。

如果index.html和login.php都一起位于服务器上,则标头方法可以正常工作。但是现在,该html文件作为HTML5应用程序驻留在手机上,该应用程序可以访问服务器(可能的-我有服务器网址)。检查凭据和重定向。如何在手机上重定向回我的应用程序?手机上没有该应用程序的URL。

也尝试过ajax,但没有任何反应。

附注:如果您打算举报此问题,请先通读并理解该问题。某些文本匹配并不意味着相同的问题。

在应用程序上输入登录详细信息的首页:

<html>
    <head>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
        <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
        <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
        <script src="scripts.js"></script>
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> 
    </head>
        <body>
            <div data-role="page" id="loginForm">
                <form id="form1" name="form1" method="POST" action="http://www.examplewebsite.com/login.php">
                    <input type="text" name="user" id="user" placeholder="Username"/>

                    <input type="password" name="pass" id="pass" placeholder="Password" />

                    <input type="submit" name="submit" value="Login" />
                </form>
            </div>
            <div data-role="page" id="home">
                <h1>Logged In</h1>
            </div>
        </body>
    </html> 

用于检查登录的脚本。此php文件位于服务器端。

//DB Log in credentials
$hostName = 'localhost';
$dbUser = 'fakeuser';
$dbPass = 'fakepass';
$dbName = 'fakedb';
$userTable = "faketable";

//Connect to DB
$conn = mysql_connect($hostName, $dbUser, $dbPass) or die("not connecting");
$dbSelect = mysql_select_db($dbName) or die("no db found");

//Obtain input username and password from the client
$username = $_POST["user"];
$password = $_POST["pass"];

//Check for MySql Injections
if(ctype_alnum($username) && ctype_alnum($password)){
    $query1 = mysql_query("SELECT * FROM $userTable WHERE username='$username'");
    //query will return 1 if the username exists in the database
    $numrows = mysql_num_rows($query1);

    if($numrows == 1){
        //checking if the password matches the username now
        $query2 = "SELECT password FROM $userTable WHERE username='$username'";
        $result2 = mysql_query($query2);        
        $row = mysql_fetch_array($result2, MYSQL_ASSOC);
        $pass = $row['password'];

        if($password == $pass){
            //If successful, redirect to the #home page
            //anything I can do here to redirect back to #home on my app?
        }
        else
            echo "Password incorrect";
    }
    else
        echo "username incorrect" . $numrows;
}
else{
    echo "Not alpha Numeric Input!!";
}

尝试的Ajax部分

var isLogged = false;
/**
 * Method used to log into the application
 */
$(document).on("pageinit", "#loginForm", function () {
    $("#form1").on("submit", function (event) {
        event.preventDefault();
        $.ajax({
            type: "GET",
            url: "http://www.examplewebsite.com/login.php",
            data: $("#form1").serialize(),
            success: function (data) {
                console.log(data);
                if (data.loggedIn) {
                    isLogged = true;
                    $.mobile.changePage("#home");
                } else {
                    alert("You entered the wrong username or password. Please try again.");
                }
            }
        });
    });
});

参考方案

loggedIn在哪里定义?您永远不会进入这个范围if (data.loggedIn) { },或者?

您是否尝试过“返回” JSON编码的数组并实际使用该数据?

如我所见,您并未真正使用用户可能遇到的其他错误,即“密码错误”,“用户名错误”和“非字母数字输入!”。

您可能想要执行以下操作:

if (data.loggedIn) { /* Went well */ }
else if (data.passIncorrect) { /* Password incorrect */ }
else if (data.userIncorrect) { /* User incorrect */ }
else if (data.passIncorrect) { /* NaN */ }

您也许可以找到有关主题here或here的更多信息。

我不知道这对您有什么帮助,我甚至可能不在这里切线。

jQuery PHP发布 - javascript

我有一个问题,也许很简单,但是当我发送jquery_send.php的数据时,我不知道如何加载jquery_post.php我恢复了将信息从jquery_send.php发送到jquery_post.php并希望在发送页面jquery_post.php后加载与数据这是我在jquery_send.php中拥有的:<html> <head>…

Telerik单选按钮所需的字段验证器 - javascript

如何设置Telerik单选按钮所需的字段验证器?我想在按钮单击“ BtnSave”上设置必填字段验证器吗?请帮忙!<telerik:RadButton ID="radio_male" runat="server" ToggleType="Radio" AutoPostBack="fa…

表单不提交或按钮提交不起作用 - javascript

据我所知,此代码必须有效,但是我编码时却无效问题在于该表单未提交。我该如何解决?选中时,我什至没有得到复选框的值。<table id="example" class="display" cellspacing="0" width="100%"> <thead&g…

在PHP文件中调用javascript函数并在加载HTML文件之后? - javascript

我需要在我的php中调用js函数,但无法正常工作。有人可以告诉我我在做什么错吗?我该如何轻松地做到这一点?谢谢!我有三个文件:  mail.php负责发送$ _POST的内容(工作正常)。我调用我的javascript函数来切换模式,具体取决于邮件是否已发送。 <? ... $response = $sendgrid->send($email);…

如何使用PHP从动态输入字段捕获数组值? - javascript

我正在编写一个在线时间跟踪网页,允许用户将学习时间输入该系统。用户将首先输入名称,然后根据日期输入学习时间。一天中可能会有多个学习时间。以下是我第一页的编码,<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"…