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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)