[PHP][Biuld Your First App ]搭建你的第一个应用:结束篇
本文适用于对 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') <h1 id="YourNotices">YourNotices</h1> <tableclass="table table-striped table-bordered"> <thead> <th>This Content:</th> <th>AccessibleHere:</th> <th>Is InfringingUponMyWorkHere:</th> <th>NoticeSent:</th> <th>ContentRemoved:</th> </table> <tbody> @foreach ($noticesas $notice) <tr> <td>{{ $notice->infringing_title }}</td> <td>{!! link_to($notice->infringing_link) !!}</td> <td>{!! link_to($notice->original_link) !!}</td> <td>{{ $notice->created_at->diffForHumans() }}</td> <td> {!! Form::open() !!} <divclass="form-group"> {!! Form::checkbox('content_removed',$notice->content_removed,$notice->content_removed) !!} </div> {!! Form::close() !!} </td> </tr> @endforeach ($noticesas $notice) <tbody> @unless(count($notices)) <p class="text-center">Youhaven't sentanyDMCAnoticesyet!</p> @endunless@endsection
2.添加发送新通知单之后的反馈信息。此处作者使用了一个新的 package laracasts/flash ,使用命令 composer require laracasts/flash 进行安装。
首先在 config/app.php 中注册 'Laracasts\Flash\FlashServiceProvider';
然后在 controller 中编写相应代码实现提示信息。
<?phpnamespace App\Http\Controller; use ... class NoticesController extends Controller { public function __construct() { $this->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 中添加反馈展示区域。
<!DOCTYPEhtml><htmllang="en"><head> <metacharset="UTF-8"> <metahttp-equiv="X-UA-Compatible" content="IE=edge"> <metaname="viewport" content="with=device-width,initial-scale=1"> <title>DMCAApp</title> <linkrel="stylesheet" href="/css/app.css"></head><body> @include('flash::message') @include('partial.nav)//载入导航栏 @yield('content')//内容插入处 <scriptsrc="//cdjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <scriptsrc="//cdjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script></body></html>
3.为 notices 表格中的 Content Removed 栏中的 checkbox 添加 submit 按钮,编写 update 方法将变化写入数据库。
<?phpnamespace App\Http\Controller; use ... class NoticesController extends Controller { public function __construct() { $this->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 update($noticeId,) { $isRemoved = $request->has('content_removed'); Notice::findOrFail($noticeId) ->update(['content_removed' => $isRemoved]); return redirect()->back(); } 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; } }
之后作者去掉 submit 键
4.使用 javascript 实现上述功能,此处简要展示代码。
为 app.blade.php 添加定制 javascript 代码
<!DOCTYPEhtml><htmllang="en"><head> <metacharset="UTF-8"> <metahttp-equiv="X-UA-Compatible" content="IE=edge"> <metaname="viewport" content="with=device-width,initial-scale=1"> <title>DMCAApp</title> <linkrel="stylesheet" href="/css/app.css"></head><body> @include('flash::message') @include('partial.nav)//载入导航栏 @yield('content')//内容插入处 <scriptsrc="//cdjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <scriptsrc="//cdjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script> <scriptsrc="/js/all.js"></script></body></html>
修改 index.blade.php 添加异步通信、提示信息,去掉 submit 按钮。
@extends('app') @section('content') <h1 id="YourNotices">YourNotices</h1> <tableclass="table table-striped table-bordered"> <thead> <th>This Content:</th> <th>AccessibleHere:</th> <th>Is InfringingUponMyWorkHere:</th> <th>NoticeSent:</th> <th>ContentRemoved:</th> </table> <tbody> @foreach ($noticesas $notice) <tr> <td>{{ $notice->infringing_title }}</td> <td>{!! link_to($notice->infringing_link) !!}</td> <td>{!! link_to($notice->original_link) !!}</td> <td>{{ $notice->created_at->diffForHumans() }}</td> <td> {!! Form::open(['data-remote','method' => 'PATCH','url' => 'notices/'.$notice->id]) !!} <divclass="form-group"> {!! Form::checkbox('content_removed',$notice->content_removed,$notice->content_removed,['data-click-submits-form']) !!} </div> {!! Form::close() !!} </td> </tr> @endforeach ($noticesas $notice) <tbody> @unless(count($notices)) <p class="text-center">Youhaven't sentanyDMCAnoticesyet!</p> @endunless@endsection
总结
laravel 框架展示出了优秀易读的特性,本文水平有限只做了简要介绍详情请继续学习相关 文档 ,和 视频 。

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

长URL(通常用关键字和跟踪参数都混乱)可以阻止访问者。 URL缩短脚本提供了解决方案,创建了简洁的链接,非常适合社交媒体和其他平台。 这些脚本对于单个网站很有价值

在Facebook在2012年通过Facebook备受瞩目的收购之后,Instagram采用了两套API供第三方使用。这些是Instagram Graph API和Instagram Basic Display API。作为开发人员建立一个需要信息的应用程序

Laravel使用其直观的闪存方法简化了处理临时会话数据。这非常适合在您的应用程序中显示简短的消息,警报或通知。 默认情况下,数据仅针对后续请求: $请求 -

这是有关用Laravel后端构建React应用程序的系列的第二个也是最后一部分。在该系列的第一部分中,我们使用Laravel为基本的产品上市应用程序创建了一个RESTFUL API。在本教程中,我们将成为开发人员

Laravel 提供简洁的 HTTP 响应模拟语法,简化了 HTTP 交互测试。这种方法显着减少了代码冗余,同时使您的测试模拟更直观。 基本实现提供了多种响应类型快捷方式: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

PHP客户端URL(curl)扩展是开发人员的强大工具,可以与远程服务器和REST API无缝交互。通过利用Libcurl(备受尊敬的多协议文件传输库),PHP curl促进了有效的执行

您是否想为客户最紧迫的问题提供实时的即时解决方案? 实时聊天使您可以与客户进行实时对话,并立即解决他们的问题。它允许您为您的自定义提供更快的服务

2025年的PHP景观调查调查了当前的PHP发展趋势。 它探讨了框架用法,部署方法和挑战,旨在为开发人员和企业提供见解。 该调查预计现代PHP Versio的增长
