http://my.oschina.net/tongjh/blog/194231
http://baike.baidu.com/view/1020297.htm
一、laravel路由(应用中的大多数路由都会定义在 app/routes.php 文件中)
routes.php
1 |
Route::get( '/test' , 'TestController@index' ); |
一个路由就定义好了,当访问 http://xxx.com/public/index.php/test 时就会去找 app/controllers/TestController.php的index方法
TestController.php
1 |
class TestController extends Controller{ |
2 |
public function index(){ |
一个控制器就建立好了,控制器也可以设置闭包,也可以设置别名
1 |
Route::get( 'user/profile' , array ( 'as' => 'profile' , function () |
更多路由请看手册: http://www.golaravel.com/docs/4.1/routing/
二、模型
普通数据库操作
1 |
$results = DB::select( 'select * from users where id = ?' , array (1)); //查 |
2 |
$results = DB::insert( 'insert into users (id, name) values (?, ?)' , array (1, 'Dayle' )); //增 |
3 |
$results = DB::update( 'update users set votes = 100 where name = ?' , array ( 'John' )); //更新 |
4 |
$results = DB:: delete ( 'delete from users where id = ?' , array (1)); //删 |
查询生成器
02 |
$obj = DB::table( 'archives' )->select( 'archives.*' , 'arctype.typename' )->where( 'archives.id' , '>' ,2)->join( 'arctype' , 'arctype.id' , '=' , 'archives.typeid' , 'left' )->orderBy( 'archives.id' , 'desc' )->skip(10)->take(5)->get(); //查多条数据 |
03 |
$obj = DB::table( 'archives' )->where( 'typeid' , '=' , '1' )->orderBy( 'id' , 'desc' )->first(); //查询一条数据 |
05 |
$sql = DB::table( 'archives' ) |
06 |
->where( 'typeid' , '=' , 1) |
07 |
->orWhere( function ( $query ) |
09 |
$query ->where( 'id' , '>' , 2) |
10 |
->where( 'title' , '<>' , 'Admin' ); |
12 |
->get(); //sql语句: select * from `la_archives` where `typeid` = 1 or (`id` > 2 and `title` <> 'Admin') |
14 |
$users = DB::table( 'archives' )-> count (); //查总数 |
15 |
$price = DB::table( 'archives' )->max( 'id' ); //查最大值 |
16 |
$price = DB::table( 'archives' )->min( 'id' ); //查最小值 |
17 |
$price = DB::table( 'archives' )->avg( 'id' ); //查平均值 |
18 |
$total = DB::table( 'archives' )->sum( 'id' ); //查和 |
20 |
$data = array ( 'title' => '标题八' , 'body' => '内容八' , 'typeid' =>2); |
21 |
$obj = DB::table( 'archives' )->insert( $data ); |
23 |
$data2 = array ( 'title' => '标题九' , 'body' => '内容九' , 'typeid' =>2); |
24 |
$obj = DB::table( 'archives' )->where( 'id' ,2)->update( $data2 ); |
26 |
$obj = DB::table( 'archives' )->where( 'id' , '>' , '100' )-> delete (); |
//模型(app/models/Archives.php)
1 |
class Archives extends Eloquent{ |
2 |
protected $table = 'archives' ; //表名 |
3 |
public $timestamps = false; //不自动维护更新时间 |
//模型操作和普通SQL查询一样
1 |
$arr = Archives::select( 'archives.*' , 'arctype.typename' )->where( 'archives.id' , '>' ,2)->join( 'arctype' , 'arctype.id' , '=' , 'archives.typeid' , 'left' )->orderBy( 'archives.id' , 'desc' )->skip(0)->take(10)->get(); |
2 |
$data = array ( 'title' => '新标题' , 'body' => '新内容' ); |
3 |
$arr = Archives::where( 'id' , '=' ,2)->update( $data ); |
三、视图(app/views/home/test.blade.php)
2 |
foreach ( $items as $k => $v ){ |
控制器中
1 |
public function test(){ |
2 |
$data = Archives::select( '*' )->get(); |
3 |
return View::make( 'home.test' )->with( 'items' , $data ); |
- 转载ASP.NET MVC 和ASP.NET Web Form简单区别
转载原地址 http://www.cnblogs.com/lei2007/p/3315431.html 概论: Asp.net 微软 提供web开发框架或者技术.分Web Form和ASP.NET ...
- 转载 ASP.NET MVC中使用ASP.NET Identity
转载原地址: http://blog.jobbole.com/90695/ 在之前的文章中,我为大家介绍了OWIN和Katana,有了对它们的基本了解后,才能更好的去学习ASP.NET Identit ...
- 转载ASP.NET MVC中Session的处理机制
本文章转载自 http://www.cnblogs.com/darrenji/p/3951065.html ASP.NET MVC中的Session以及处理方式 最近在ASP.NET MVC项目中 ...
- 【转载】【MVC 学习 Razor语法】
Razor是MVC3中才有的新的视图引擎.我们知道,在ASP.NET中,ASPX的视图引擎依靠<%和%>来调用C#指令.而MVC3以后有了一套新的使用@标记的Razor语法,使用起来更灵活 ...
- [转载] ASP.NET MVC (一)——深入理解ASP.NET MVC
个人认为写得比较透彻得Asp.net mvc 文章,所以转载过来,原文链接在最后: ASP.NET vs MVC vs WebForms 许多ASP.NET开发人员开始接触MVC认为MVC与ASP.N ...
- 转载——Asp.Net MVC+EF+三层架构的完整搭建过程
转载http://www.cnblogs.com/zzqvq/p/5816091.html Asp.Net MVC+EF+三层架构的完整搭建过程 架构图: 使用的数据库: 一张公司的员工信息表,测试数 ...
- 《转载》Spring MVC之@RequestBody, @ResponseBody 详解
引言: 接上一篇文章讲述处理@RequestMapping的方法参数绑定之后,详细介绍下@RequestBody.@ResponseBody的具体用法和使用时机: 简介: @RequestBody 作 ...
- 【转载】Spring MVC 整合 Freemarker
前言 1.为什么要使用Spring MVC呢? 2.为什么要使用Freemarker呢? 3.为什么不使用Struts2呢? 此示例出现的原因就是发现了struts2的性能太差,所以学习Spring ...
- [转载]Spring Web MVC Framework
Required Configuration You need to map requests that you want the DispatcherServlet to handle, by us ...
随机推荐
- magento xml配置详解
<?XML版本=“1.0”? <config> <节> 实施例translate="label"> <label>的一个例子< ...
- myeclipse自动补全设置
第一步: windows -->preference -->java -->editor -->content Assist --> auto activation -- ...
- SDK命令行操作
* 使用前需要先在path中添加Android SDK的环境变量,跟Java JDK的配置相同 我当前目录如下:F:\Program\Android SDK\tools:F:\Program\Andr ...
- 使用游标循环进行SQL更新插入的SQL语句
使用SQL中的循环,可以实现许多我们需要的操作,比如SQL更新操作.下面就为您介绍使用游标循环进行SQL更新插入的SQL语句写法,希望对您深入学习SQL更新有所帮助. --开始事务 BEGIN TRA ...
- jquery悬停tab2
<style> *{ margin:0; padding:0;} body { font:12px/19px Arial, Helvetica, sans-serif; color:#66 ...
- AspNetPager
AspNetPager使用方法引入dll <%@ Register assembly="AspNetPager" namespace="Wuqi.Webdiyer& ...
- ListView小坑
ListView的addHeaderView()和addFooterView()方法需要“Call this before calling setAdapter”,否则崩溃. 但是在KITKAT(ap ...
- iOS 8以上的设置的跳转
iOS8以上的系统应用可以与设置进行深层的交互,用户可以根据APP的需要进行对应的权限的设置. 现在大多数的APP依旧仅仅是弹出一个包含操作指令的警示窗口,如“进入设置>隐私>位置> ...
- NSString字符串类型-学习总结
1.字符串的创建 (1)创建常量字符串 NSString *str = @"This is a String"; //str是变量名 (2)创建空的字符串,给字符串赋值 NSStr ...
- Jquery 中 $('obj').attr('checked',true)失效的几种解决方案
转载自:搜狐博客 大拙无为 1.$('obj').prop('checked',true) 2. $(':checkbox').each(function(){ this.checked=true; ...