一.HTTP请求

1.基本示例:
通过依赖注入获取当前 HTTP 请求实例,应该在控制器的构造函数或方法中对Illuminate\Http\Request 类进行
类型提示,当前请求实例会被服务容器自动注入

控制器中:

public function store(Request $request)
{
$name=$request->input('name');
//
}

  

如果还需要获取路由参数输入,只需要将路由参数置于其他依赖之后,例如你的路由定义如下

Route::put('user/{id}','UserController@update');

  

在控制器中:

public function update(Request $request,$id)
{
//
}

  

2.基本请求信息
a.$uri=$request->path(); //返回请求的URI,,如果进入的请求路径是http://domain.com/foo/bar ,则path 方法将
会返回foo/bar
b.$request->is('admin/*'); //is 方法允许你验证进入的请求是否与给定模式匹配。使用该方法时可以使用* 通配符
c.$url=$request->url(); //获取完整的url
d.获取请求方法及判断:

$method=$request->method();
if($request->isMethod('post')){
//
}

二.获取输入

1.输入参数
a.$name = $request->input('name','default'); //获取用户输入的name,如果没有值,用default作为默认值
b.$input = $request->input('products.0.name'); //处理表单数组输入时,可以使用”.”来访问数组
c.$request->has('name'); //判断输入值是否出现
d.$input = $request->all(); //获取所有数据
e.获取部分数据
$input = $request->only('username', 'password');
$input = $request->except('credit_card');

2.上一次请求输入:
a.将输入存储到一次性 Session:
$request->flash(); //全部存入
$request->flashOnly('username', 'email'); //仅存入username,email
$request->flashExcept('password'); //除了password,全部存入

b.将输入存储到一次性 Session 然后重定向
return redirect('form')->withInput();
return redirect('form')->withInput($request->except('password'));

3.取出上次数据
$all = $request->old();
$username = $request->old('username');

模板中使用全局函数old
{{ old('username') }}

三.Cookies

1.请求cookie
$value = $request->cookie('name');
也可以使用辅助方法
$value = Request::cookie('name');
$value = Cookie::get('name');

2.新增cookie

Cookie::queue('test', 'Hello, Laravel', 10, '/'); // 添加一个名为test的cookie,值为'Hello, Laravel',有效期10分钟

示例:
public function index(Request $request)
{
Cookie::queue('test2', 'Hello, Laravel', 10);
return 'ok';
}

  

response示例

$response = new \Illuminate\Http\Response();
$response->withCookie(cookie('name', 'valuefff', 10));
return $response;

  

3.设置永久cookie(5年有效期)

示例

$response = new \Illuminate\Http\Response();
$response->withCookie(Cookie::forever('test10', 'Hello, Laravel'));
return $response;

  

如果需要response,还要相应模板,可以使用,Response::view

$cookie = Cookie::forever('test29', 'Hello, Laravel');
return \Response::view('test.hi')->withCookie($cookie);

  

4.清除cookie

$cookie = Cookie::forget('test25');
return \Response::view('test.hi')->withCookie($cookie);

  

四.文件上传
1.创建
$file = $request->file('photo');

2.$request->hasFile('photo'),判断文件在请求中是否存在

3.验证文件是否在上传中出错
$request->file('photo')->isValid()

4.保存
$request->file('photo')->move($destinationPath);
$request->file('photo')->move($destinationPath, $fileName);

完整示例:

//文件上传处理
public function postFileupload(Request $request){
//判断请求中是否包含name=file的上传文件
if(!$request->hasFile('file')){
exit('上传文件为空!');
}
$file = $request->file('file');
//判断文件上传过程中是否出错
if(!$file->isValid()){
exit('文件上传出错!');
}
$destPath = realpath(public_path('images'));
if(!file_exists($destPath))
mkdir($destPath,0755,true);
$filename = $file->getClientOriginalName();
if(!$file->move($destPath,$filename)){
exit('保存文件失败!');
}
exit('文件上传成功!');
}

Laravel请求/Cookies/文件上传的更多相关文章

  1. Django 10 GET和POST(HttpRequest对象,GET和POST请求,文件上传,HttpResponse对象的cookie)

    Django 10 GET和POST(HttpRequest对象,GET和POST请求,文件上传,HttpResponse对象的cookie) 一.HttpRequest对象 #HttpRequest ...

  2. Android okHttp网络请求之文件上传下载

    前言: 前面介绍了基于okHttp的get.post基本使用(http://www.cnblogs.com/whoislcj/p/5526431.html),今天来实现一下基于okHttp的文件上传. ...

  3. php laravel 帧 该文件上传

    好,我承认我的忠告. 今天laravel框架编写一个文件上传部分.总能找到不正确的路径.但是,终于攻克. 以下我分享一下自己的学习体会吧. client <form method="P ...

  4. 使用HttpClient 发送 GET、POST、PUT、Delete请求及文件上传

    package org.caeit.cloud.dev.util; import java.io.File; import java.io.IOException; import java.io.Un ...

  5. Laravel 5 教程 - 文件上传

    一.简介 Laravel 有很棒的文件系统抽象层,是基于 Frank de Jonge 的 Flysystem 扩展包. Laravel 集成的 Flysystem 提供了简单的接口,可以操作本地端空 ...

  6. Android 普通okhttp、okhttp utils执行 post get请求,文件上传下载、请求图片

    public class OKHttpActivity extends Activity implements View.OnClickListener { public static final M ...

  7. SpringCloud 之 Fegin —— 发送GET、POST请求以及文件上传

    由于项目需要调用其他微服务的数据,首先想到的就是写一个http网络请求的工具类,但是想到在之前看springCloud的时候里面有这个Fegin可以实现,就顺便实践一下,虽然过程有点坎坷,好在都顺利解 ...

  8. 前端笔记之微信小程序(三)GET请求案例&文件上传和相册API&配置https

    一.信息流小程序-GET请求案例 1.1服务端接口开发 一定要养成接口的意识,前端单打独斗出不来任何效果,必须有接口配合,写一个带有分页.关键词查询的接口: 分页接口:http://127.0.0.1 ...

  9. 使用HttpClient 发送 GET、POST(FormData、Raw)、PUT、Delete请求及文件上传

    httpclient4.3.6 package org.caeit.cloud.dev.util; import java.io.File; import java.io.IOException; i ...

随机推荐

  1. 百度之星初赛(A)——T6

    度度熊的01世界 Problem Description 度度熊是一个喜欢计算机的孩子,在计算机的世界中,所有事物实际上都只由0和1组成. 现在给你一个n*m的图像,你需要分辨他究竟是0,还是1,或者 ...

  2. wxpython demo

    #!/usr/bin/python # encoding: utf-8 '''Spare.py is a starting point for a wxPython program.''' impor ...

  3. UVALIVE 2955 Vivian's Problem

    参考: http://blog.csdn.net/acm_cxlove/article/details/7860735 感觉这里需要记录一下 #include <map> #include ...

  4. 基于UDP高性能传输协议UDT doc翻译(一)

    原文转自:http://hi.baidu.com/doodlezone/item/74a203155efe26dbbf9042dd                  UDT文档阅读理解 一.  概述 ...

  5. c专家编程读书笔记

    无论在什么时候,如果遇到malloc(strlen(str));,几乎可以直接断定他是错误的,而malloc(strlen(str)+1):才是正确的: 一个L的NUL哟关于结束一个ACSII字符串: ...

  6. shiro配置参考(一)

    <?xml version="1.0" encoding="UTF-8"?> <beans xmlns:xsi="http://ww ...

  7. Appium+python自动化11-adb必知必会的几个指令【转载】

    前言 学android测试,adb是必学的,有几个常用的指令需要熟练掌握 一.检查设备 1.如何检查手机(或模拟器)是连上电脑的,在cmd输入: >adb devices

  8. python爬虫beautifulsoup4系列4-子节点【转载】

    本篇转自博客:上海-悠悠 原文地址:http://www.cnblogs.com/yoyoketang/tag/beautifulsoup4/ 前言 很多时候我们无法直接定位到某个元素,我们可以先定位 ...

  9. 使用jquery实现省市二级列表

    这里讲用到 jquery 的  each  遍历方法  追加 节点或元素方法  append  appendTO   以及 remove 清除节点 <script> $(function( ...

  10. .apache.commons.io 源代码学习(二)FilenameUtils类

    FilenameUtils是apache common io中一个独立的工具类,对其他没有依赖,看其源代码的import即可知道. import java.io.File;import java.io ...