Recent Activity
dancheng99
User for 6 years
永久订阅用户
6 years ago 评论 Laravel 视图渲染:Blade 模板引擎<!DOCTYPE html> <html> <head> <title>应用名称 - @yield('title')</title>...
6 years ago 评论 HTTP 响应、重定向及文件下载Route::get('test046', function() { $headers = [ 'Content-Type' => 'image/jpeg', ]; return resp...
6 years ago 评论 HTTP 响应、重定向及文件下载Route::post('user/profile', function () { // 更新用户属性... return redirect('dashboard')->with('sta...
6 years ago 评论 HTTP 请求参数获取、Cookie设置及文件上传Route::get('cookie/add', function () { $minutes = 24 * 60; return response('欢迎来到 Laravel 学院')->...
6 years ago 评论 HTTP 请求的处理层:控制器<form method="POST" action="{{url('/test028/'.'111')}}"> <input type...