- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经开始研究 laravel 5.3 了。构建一个基本的登录页面。
这是我的主 Controller
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view('home');
}
}
我的 User.php
<?php
namespace App;
use Illuminate\Http\Request
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
}
之前只有一个 route.php,但现在在 Laravel 5.3 中,路由目录中有 api.php、console 和 web.php,因此我找不到任何资源来查找添加路由命令的位置。
我的 api.php 在 routes 文件夹中
use Illuminate\Http\Request;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::get('/user', function (Request $request) {
return $request->user();
})->middleware('auth:api');
我的 web.php 在 routes 文件夹中
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of the routes that are handled
| by your application. Just tell Laravel the URIs it should respond
| to using a Closure or controller method. Build something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
Auth::routes();
Route::get('/home', 'HomeController@index');
Auth::routes();
Route::get('/home', 'HomeController@index');
我的console.php在route文件夹中
<?php
use Illuminate\Foundation\Inspiring;
/*
|--------------------------------------------------------------------------
| Console Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of your Closure based console
| commands. Each Closure is bound to a command instance allowing a
| simple approach to interacting with each command's IO methods.
|
*/
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->describe('Display an inspiring quote');
Route::get('/', function () { return view('welcome');} );
这工作正常,因为我能够看到主页,但其他路由不工作。当我单击登录或注册时出现此异常
最佳答案
有关 5.3 路由的更多信息,请参阅@matt 发布的文档。
https://mattstauffer.co/blog/routing-changes-in-laravel-5-3
另请阅读 laravel 5.3 路由详情文档 here .
你不应该使用 api.php 除非你正在自定义 laravel 开箱即用的路由限定链接,要自定义你的路由请改用 web.php。
关于laravel - RouteCollection.php 第 161 行 Laravel 5.3 中的 NotFoundHttpException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39660731/
路由配置: public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) {
你能说出 RouteCollection 和 Route Table 的区别吗? 我尝试了很多在 Google 上进行搜索。但找不到任何引用资料。 最佳答案 RouteTable是一个存储应用程序 U
我不得不将我的 ASP.Net 4.5.2 应用程序降级到 ASP.Net 4.0。当然这会带来问题,比如未安装的引用正确的。我已经解决了其中的一些问题,但我无法理解错误: CS106 'RouteC
RouteCollection.Ignore(url, constraints)和RouteCollection.IgnoreRoute(url, constraints)有什么区别? 背景 新的MV
我随处看到的 MVC 风格路由的示例是这样的: void Application_Start(object sender, EventArgs e) { RegisterRoutes(Rout
我正在 VS 2008(带有 SP1)中开发一个网站(Web 表单,而不是 MVC)。我正在尝试合并 ASP.NET 路由。我正在按照 MSDN 教程进行操作。 http://msdn.microso
我一直在开发一个纯 MVC CMS 的乐趣,并且遇到了一个令人讨厌的 ASP.NET 路由错误/功能。 我的 CMS 中的每个动态 托管页面都与从数据库中提取的特定路由相关联。这些在应用程序启动时加载
Laravel:当有人访问后路由而不提供后路由参数时,如何防止 RouteCollection.php 中的 MethodNotAllowedHttpException? 当我定义一个 post 路由
我正在使用 Sonata Admin Bundle,但在使用该功能时遇到了一些问题: function configureRoutes(RouteCollection $collection){ }
welcome {{
路由文件 Route::get('/home', 'HomeController@index')->name('home'); Route::get('/' , ['as' => '/', 'uses
我在 iis7 上运行的 asp.net mvc 代码中随机出现两个异常: Exception type: InvalidOperationException Exception message: C
当我存储帖子时出现此错误 MethodNotAllowedHttpException in RouteCollection.php line 219: 什么会导致这个问题?? 路由.php: Rout
我这里有这些路由声明 //Skill Route::get('skill','SkillController@index'); Route::get('skill/create','SkillCont
我收到此错误: Sorry, the page you are looking for could not be found. 1/1 NotFoundHttpException in RouteCo
routes.php Route::get('/',array('uses'=>'student@index')); Route::get('/view',array('uses'=>'student
这是我的global.asax(注册路由) routes.MapRoute("NewDatabase", "Server/{serverId}/Instances/{in
我目前正在开发一个论坛系统 (laravel 5.3),我收到一个错误,可能是因为我的路由设置有问题。 name('index'); Auth::routes(); Route::get('/
我正在开发 Laravel 5 应用程序,我有这条路线 Route::get('/go','UrlController@index'); 在这个 UrlController.php 中,我有这个索引方
我遵循 SignalR wiki 页面中的示例,这是我的 Global.asax : void Application_Start(object sender, EventArgs e
我是一名优秀的程序员,十分优秀!