douh9817 2014-10-22 07:38
浏览 50
已采纳

Laravel Auth ::尝试功能不起作用

I am trying to use the Laravel attempt function within the Auth class to allow a user to login and store themselves in the session.

I understand this function requires an array with the 'password' and 'email' variables and I am sending this fine, it just doesn't seem to be logging me in or returning true.

Here is my controller code:

class LoginController extends BaseController {
    public function login()
    {       
        if(isset($_POST)) {     
            $errorsArray = array();
            foreach($_POST as $key => $postItem) {
                if(empty($postItem) || $postItem == "") {
                    $errorsArray[] = array(
                        'errorItem' => $key,
                        'errorMessage' => "Please enter a value for " .ucfirst($postItem)
                    );
                }
            }
            if(!empty($errorsArray)) {
                $returnArray = array( 
                    'didLog' => false,
                    'errors' => $errorsArray 
                );
            } else {

                if(Auth::attempt(array('username' => $_POST['username'], 'password' => $_POST['password']))) {
                    die("here");
                } else {
                    die("no");
                }

            }
            return json_encode($returnArray);
        }
    }

}

As you can see above, I am checking to see if the inputs are valid, and if so, calling the Auth::attempt function in order to log a user in.

The view code:

<form>
        <h3><i class="lock"></i>Please enter your login details</h3>
        <input type="email" name="username" placeholder="email" data-required=1 />
        <input type="password" name="password" placeholder="password" data-required=1 />
        <input type="submit" value="login" />   
        <button>Signup with Facebook</button>
        <button>Signup with Twitter</button>
        <a href="#" class="close-overlay" data-related="login-overlay">CLOSE</a>
        <div class="clear"></div>
    </form>

And the appropriate Javascript code

            jQuery.ajax({
                type     : "post",
                dataType : "json",
                url      : url,
                data     : "username=" + username + "&password=" + password,
                success  : function(data) {
                    if(data.didLog == true) {
                        alert("rrue");
                    } else {
                        alert("false");
                    }
                }
            });

And I have die(print_r(()) the input (which is present in my database) as follows:

Array

( [username] => jamesholman@bigwavemedia.co.uk [password] => password )

And the appropriate record in the database

enter image description here

I am getting a "no" (which is a fail in my code) when attempting to login. Can anyone see where I am going wrong as I can't for the life of me figure out why it won't work! Thanks

  • 写回答

1条回答 默认 最新

  • duanchen7401 2014-10-22 07:53
    关注

    Are you logging in with "jamesholman@bigwavemedia.co.uk" or "jamesholman" as your username? The Auth::attempt is pointing $_POST['username'] to your username column in your database table. So if you're trying to authenticate with 'jamesholman@bigwavemedia.co.uk' as your username, it won't find any user

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题