PDO对象超出范围,试图调用Javascript函数

时间:2013-07-19 22:31:45

标签: php javascript html ajax

我正在尝试与之交互的类对象超出范围。我尝试过一些东西但似乎无法解决它。

我仍然收到错误致命错误:在控制台日志中的非对象上调用成员函数userExists()。

网站的结构是:

我有一个init.php,它包含所有类并实例化对象 这包含在每个页面的顶部。 然后我有一个标题包括在身体的每个页面上也包含。 标题内是一个登录框,以及一个调用Ajax来验证登录等的js函数的内联事件处理程序。

我理解该对象超出了函数的范围,我试图将其作为参数传递并失败,就像使它成为全局一样。

有人可以建议一个解决方案吗?

代码:

init文件:

//start session data

session_start();

require 'core/connect/dbConnect.php';
require 'core/classes/users.php';
require 'core/classes/general.php';
require 'core/classes/helper.php';
require 'include/facebook.php';

//instantiating the classes
$users   = new Users($db);
$general = new General();
$helper = new Helper();

error_reporting(E_ALL); ini_set('display_errors', 'On');

调用该函数的HTML:

<form method="post" action="" id="ourLoginFormID_JS">
                    <div class="ourContactFormElement2">
                        <label for="username">Username:</label>
                        <input type="text" id="username"  name="username" autocomplete="off" class="required" value="<?php if(isset($_POST['username'])) echo htmlentities($_POST['username']); ?>"  />
                    </div>

                    <div class="ourContactFormElement2">
                        <label for="password">Password:</label>
                        <input type="password" id="password" name="password" autocomplete="off" class="required"/>
                    </div>

                    <div class="ourContactFormElement2">
                        <label> &nbsp; </label>
                        <input type="submit" name="loginButton" id="loginButton" value="Login!" onclick="validLogin(); return false;"/>
                    </div>

                    <div id="statusLogin"></div>
                </form>

Ajax / js函数:

function validLogin(){

alert("adsad");
$('.error').hide();
var username = $('#username').val();
if(username == ""){
    $('label#usernameError').show();
    $('input#username').focus();
    return false;
}
$('.error').hide();
var password = $('#password').val();
if(password == ""){
    $('label#passwordError').show();
    $('input#password').focus();
    return false;
}
alert("12344242");
var params = {username: username, password: password};
var url = "../js/loginProcessAjax.php";

$("#statusLogin").show();
$("#statusLogin").fadeIn(400).html('<img src="images/loading.gif" />');

$.ajax({
    type: 'POST',
    url: url,
    data: params,
    dataType: 'json',
    beforeSend: function() {
        document.getElementById("statusLogin").innerHTML= 'checking...' ;
    },

    success: function(data) {
        alert("success Area ofAjax");

        $("#statusLogin").hide();

        if(data.success == true){
            alert("if data.success Area of Ajax");
            alert(data.message);

        }else{
            alert("data.message... " + data.message);//undefined
            $("#errorConsole").html(data.message);
        }

    },
    error: function( error ) {
        console.log(error);

    }
});
}

编辑:添加了ajax调用的php。

 <?php

 global $users;

if($_POST){

 if($users->userExists($username) === false){
    $data['message'] = "User doesn't exist";
    $data['success'] = false;

 ....etc etc....
}else{

    $login = $users->login($username, $password);

    if($login === false){

        $data['message'] = 'Incorrect Password or username';
        $data['success'] = false;
    }else{
        $data['success'] = true;
        //destroy old session and create new - prevents session fixation attacks
        session_regenerate_id(true);
        //all details are correct - the method returns the id to be sotred as a session
        $_SESSION['id'] = $login;
    }


}

echo json_encode($data);

}

2 个答案:

答案 0 :(得分:3)

使用global不会使您的变量成为全局变量,只会让您的局部变量在全局空间中可见,因此global $users;不会从您$users神奇地拉出init.php include 'init.php'文件到

您误解的是您的ajax请求和目的地的来源。在这种情况下:

  • 您在ajax请求的来源中有loginProcessAjax.php
  • 它与ajax请求的目的地无关,在本例中为$users。您可以将其视为从浏览器中打开该文件,因此您的null当然是include_once 'init.php';

因此解决方案是loginProcessAjax.php文件开头的{{1}}。希望它有所帮助。

答案 1 :(得分:0)

在聊天中由一位出色的大师解决。

在我的loginProcessAjax.ph顶部添加init.php,从表单返回false并添加用户名和密码的帖子解决。