douhoulei4706 2014-04-28 13:44
浏览 90
已采纳

call_user_func_array()期望参数1是有效的回调,类'Illuminate \ Auth \ Guard'没有方法'尝试' - Laravel中的Auth

I'm trying to do a basic authentication, and I have many problems, the main one is this

enter image description here

This error when I send the form and try to authenticate

blade

{{ Form::open(array('url' => 'usuario')) }}

                    <input type="text" class="text"  id="email" name="email" placeholder="Correo" {{(Input::old('email')) ? 'value ="'. Input::old('email').'"' : '' }}>
                    <p>{{ $errors->first('email') }}</p>
                    <input type="text" class="text"  id="password" name="password" placeholder="Contraseña" >
                    <p>{{ $errors->first('password') }}</p>


                {{ Form::submit('Ingresar', array('class' => 'bg1')) }}
{{ Form::close() }}

Route

Route::post('usuario', array('as' => 'usuario', 'uses' => 'UsuarioController@doLogin'));

Model

use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;

class Usuario extends Eloquent implements UserInterface, RemindableInterface{
protected $table = 'Usuario';
protected $primaryKey = 'idUsuario';
protected $hidden = array('Contrasena');
protected $fillable = array(
                        'Nombre',
                        'Apellido',
                        'Tipo',
                        'Contrasena',
                        'Correo',
                        'Fono',
                        'Foto'
                        );
}

Controller

class UsuarioController extends BaseController{

public function doLogin(){
    $rules = array(
                    'email' => 'required|email',
                    'password' => 'required'
                    );
    $validator = Validator::make(Input::all(), $rules);
    if($validator->fails()){
        return Redirect::to('usuario')->withErrors($validator)->withInput(Input::except('password'));
    }else{

        $userdata = array(
            'Correo' => Input::get('email'),
            'Password' => Input::get('password')
            );

        if(Auth::attemp($userdata)){
            return View::make('hello');
        }else{
            return Redirect::to('usuario');
        }

    }
}
}

Auth

'driver' => 'database',
'model' => 'Usuario',
'table' => 'Usuario',

please, how can I fix it?

展开全部

  • 写回答

1条回答 默认 最新

  • doutan3040 2014-04-28 13:56
    关注

    Because attemp should be attempt:

    if(Auth::attemp($userdata))
    

    Should be:

    if(Auth::attempt($userdata))
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 没输出运行不了什么问题
  • ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
  • ¥15 点云密度大则包围盒小
  • ¥15 nginx使用nfs进行服务器的数据共享
  • ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
  • ¥15 51嵌入式入门按键小项目
  • ¥30 海外项目,如何降低Google Map接口费用?
  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
  • ¥15 盘古气象大模型调用(python)
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部