laravel 5 : Class #39;input#39; not found(laravel 5:找不到“输入类)
本文介绍了laravel 5:找不到“输入"类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的 routes.php
文件中:
Route::get('/', function () {
return view('login');
});
Route::get('/index', function(){
return view('index');
});
Route::get('/register', function(){
return view('register');
});
Route::post('/register',function(){
$user = new AppUser;
$user->username = input::get('username');
$user->email = input::get('email');
$user->password = Hash::make(input::get('username'));
$user->designation = input::get('designation');
$user->save();
});
我有一个用户注册表格.我也在 routes.php
中使用表单输入值.
I have a form for users registration. I am also taking the form inputs value in the routes.php
.
但是当我注册用户时出现错误.错误:
But the error comes up when I register a user . Error:
FatalErrorException in routes.php line 61:
Class 'input' not found
推荐答案
它是 Input
而不是 input
.此提交从config/app.php中删除了
Input
外观定义code> 因此您必须手动将其添加到 aliases
数组中,如下所示,
It is Input
and not input
.
This commit removed Input
facade definition from config/app.php
hence you have to manually add that in to aliases
array as below,
'Input' => IlluminateSupportFacadesInput::class,
或者您可以根据需要直接导入Input
Facade,
Or You can import Input
facade directly as required,
use IlluminateSupportFacadesInput;
这篇关于laravel 5:找不到“输入"类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:laravel 5:找不到“输入"类
猜你喜欢
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP - if 语句中的倒序 2021-01-01