[PHP][Biuld Your First App ]搭建你的第一个应用:结束篇
程序员文章站
2024-02-03 16:28:34
...
本文适用于对 PHP 和 laravel 框架有一定了解并已经看完laravel入门视频:Laravel 5 Fundamentals 的初学者。本文内容主要讲解如何搭建一个有简单注册、登录、填写表单、生成文本、预览、发送邮件和展示的 web 应用。
视频作者的视频经常被非法上传的 youtube 上,想要向有关当局反映必需填写一个 DMCA 文件并附上源视频地址和非法上传的视频地址,还要表达一些诉求。为了方便起见,网站被设计成填写表单自动生成 DMCA 文件自动发送邮件。
如果还没看请先下载观看:
- 链接: http://pan.baidu.com/s/1sjXeLQH
- 提取密码:jjb5
1.修改视图文件 index.blade.php 使得在没有创建通知单的时候页面能有提示告诉用户。
@extends('app') @section('content')YourNotices This Content: AccessibleHere: Is InfringingUponMyWorkHere: NoticeSent: ContentRemoved: @foreach ($noticesas $notice)@endforeach ($noticesas $notice) @unless(count($notices)) {{ $notice->infringing_title }} {!! link_to($notice->infringing_link) !!} {!! link_to($notice->original_link) !!} {{ $notice->created_at->diffForHumans() }} {!! Form::open() !!} {!! Form::checkbox('content_removed',$notice->content_removed,$notice->content_removed) !!} {!! Form::close() !!} Youhaven't sentanyDMCAnoticesyet!
@endunless@endsection2.添加发送新通知单之后的反馈信息。此处作者使用了一个新的 package laracasts/flash ,使用命令 composer require laracasts/flash 进行安装。
首先在 config/app.php 中注册 'Laracasts\Flash\FlashServiceProvider';
然后在 controller 中编写相应代码实现提示信息。
middleware('auth');//注册一个中间件对所有方法进行验证 parent::__construct(); } public function index() { $notices = $this->user->notices()->latest()->get();//降次排序 notices return view('notices.index',compact('notices'))); } public function create() { // get list of providers $provider = Provider::list('name','id'); // load a view to create a new notice return view('notices.create',compact('providers')); } pubilcfunction confirm(PrepareNoticeRequest $request) { $template = $this->compileDmcaTemplate($data = $request->all()); session()->flash('dmca',$data); return view('notices.comfirm',compact('template'));//返回一个新视图页,检查填写的表单数据 } public function store() { $this->creaeNotice($request); Mail::queue(['text' => 'emails.dmca'],compact('notice'),function($message) use ($notice){ $message->from($notice->getOwnerEmail()) ->to($notice->getRecipientEmail()) ->subject('DMCA Notice'); }) flash('Your DMCA notice has been delivered!'); return redirect('notices'); } public function compileDmcaTemplate($data) { $data = $data + [ 'name' => $this->user->name, 'email' => $this->user->email, ];//为模版传入数据,拼接数据 return view()->file(app_path('Http/Templates/dmca.blade.php'),$data); } private function createNotice(Request $request) { $notice = session()->get('dmca') + ['template' => $request->input('template')]; $notice = $this->user->notices()->save($notice); return $notice; } }最后在主界面 app.blade.php 中添加反馈展示区域。
DMCAApp @include('flash::message') @include('partial.nav)//载入导航栏 @yield('content')//内容插入处