0

我试图与之交互的类对象超出范围。我已经尝试了一些事情,但似乎仍然无法解决它。

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

该网站的结构是:

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

我知道该对象超出了函数的范围,我尝试将其作为参数传递并失败,使其成为全局对象也是如此。

有人可以提出解决方案吗?

代码:

初始化文件:

//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);

}
4

2 回答 2

3

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

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

  • include 'init.php'在 ajax 请求的来源中。
  • 在这种情况下,它与 ajax 请求的目的地无关loginProcessAjax.php。您可以将其想象为从浏览器打开该文件,所以您当然$usersnull

所以解决方案是include_once 'init.php';在文件的开头loginProcessAjax.php。希望能帮助到你。

于 2013-07-19T22:55:39.197 回答
0

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

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

于 2013-07-20T17:09:28.020 回答