下一节课程: laravel网站搭建-2(6798次播放)

5 秒后自动播放下一节
  重新观看
章节
笔记
提问
课件
反馈
捐赠

最新laravel商城实战视频教程

  • 推荐课程
  • 评论
  • 问答
  • 笔记
  • 课件下载
silence.w

silence.w

课件哪里可以复习呢 请问一下

2年前    添加回复 0

回复
总有刁民想害朕

总有刁民想害朕

视频没看完了怎么就跳转到下一集了??????????????????

2年前    添加回复 0

回复
手机用户651518540

手机用户651518540

nice 新手也很容易上手

2年前    添加回复 0

回复
逸风

逸风

nice 新手也很容易上手

2年前    添加回复 0

回复
奥利奥也有春天

奥利奥也有春天

aaaaaaaaaaaaaaaa够了

2年前    添加回复 0

回复
s

s

得瑟啊的qqqqqqqqqqqqqqqqqqq

2年前    添加回复 0

回复
小角色~

小角色~

哈啊奥或或或或或或或或或或或或或或或或或或或或或

2年前    添加回复 0

回复
挽风

挽风

asdasd asdas2鼎折覆餗

2年前    添加回复 0

回复
俞先生

俞先生

哈哈哈哈哈哈哈哈哈哈或或或或或或或或或或或或或

2年前    添加回复 0

回复
y

y

好。。。。。。。。。。。。。。。。。。。。。。

2年前    添加回复 0

回复
@

@

啊啊啊啊啊啊啊啊啊啊

2年前    添加回复 0

回复
多年以后

多年以后

2年前    添加回复 0

回复
北京风清扬摄影-刘斌

北京风清扬摄影-刘斌

不错

2年前    添加回复 0

航航

很好啊

航航 · 2019-01-22 15:44
回复
煜煊

煜煊

match any 多路由

1年前 0

Fadeaway

Fadeaway

666

2年前 0

顺

命名空间 Route::group(['namespace' => 'Admin'], function(){ // 控制器在"App\Http\Controllers\Admin" 命名空间下 });

2年前 0

顺

命名路由 Route::get('user/profile', 'UserController@showProfile')->name('profile') 为命名路由生成URL return redirect()->route('profile'); 如果命名路由定义了参数,可以将该参数作为第二个参数传递给 route 函数 route('profile', ['id' => 1])

2年前 0

顺

路由必选参数 Route::get('user/{id}', function ($id) { return 'User '.$id; }); 路由可选参数 Route::get('user/{name?}', function ($name = 'John') { return $name; });

2年前 0

顺

资源路由:Route::resuorce('Admin','IndexCOntroller');

2年前 0

顺

一个路由响应多个请求 Route::match(['get', 'post'], '/', function () {// }); Route::any('foo', function () { // });

2年前 0

顺

put请求:<input type="hidden" name="_method" value="put"> put接收 (Request $request) $request->input()

2年前 0

顺

csrf 跨站请求伪造 {{csrf_field()}}

2年前 0

paradise

paradise

路由类型

3年前 0