翻译:Laravel-4-Generators 使用自己定义代码生成工具高速进行Laravel开发
使用自己定义代码生成工具高速进行Laravel开发
这个Laravle包提供了一种代码生成器,使得你能够加速你的开发进程。这些生成器包含:
generate:model
–
模型生成器generate:view
–
视图生成器generate:controller
–
控制器生成器generate:seed
–
数据库填充器generate:migration
–
迁移generate:pivot
–
关联表generate:resource
-资源generate:scaffold
–
脚手架
安装
Laravel 4.2 或者更低的版本号
使用Composer安装这个包,编辑你项目的composer.json
文件。在require中加入way/generators
"require-dev": {
"way/generators": "~2.0"
}
然后,在命令行下运行composer update:
composer update --dev
一旦这个操作完毕。就仅仅须要最后一步,在配置文件里加入服务提供者。
打开app/config/app.php
文件。加入一个新的记录到providers数组中.
'Way\Generators\GeneratorsServiceProvider'
这样就能够了,你已经安装完毕并能够执行这个包了。
执行artisan命令行则能够在终端上看到generate相关命令。
php artisan
Laravel 5.0 或者更高版本号
使用Composer安装这个包,编辑你项目的composer.json
文件。在require中加入way/generators
"require-dev": {
"way/generators": "~3.0"
}
因为在Laravel高版本号中默认目录结构。须要3.0或者更高的版本号。才干适应5.0版本号以上的Laravel
然后。在命令行下运行composer update:
composer update --dev
一旦这个操作完毕,就仅仅须要最后一步,在配置文件里加入服务提供者。
打开app/config/app.php
文件,加入一个新的记录到providers数组中.
'Way\Generators\GeneratorsServiceProvider'
这样就能够了,你已经安装完毕并能够执行这个包了。
执行artisan命令行则能够在终端上看到generate相关命令。
php artisan
使用演示样例
想象一下使用一个生成器加速你的工作流。
而不是打开models目录,创建一个新的文件,保存它,而且在文件里加入一个class。你能够简单的执行一个生成器命令就可以完毕这一系列动作。
迁移
Laravel提供了一个迁移生成器,可是它只可以创建数据库结构。
让我们再回想几个样例,使用generate:migration
。
php artisan generate:migration create_posts_table
假设我们不指定字段配置项,则以下这个文件将被创建在app/database/migrations
文件夹下。
<?php use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint; class CreatePostsTable extends Migration { /**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('posts', function(Blueprint $table) {
$table->increments('id');
$table->timestamps();
});
} /**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('posts');
} }
注意,生成器可以检測到你正在尝试创建一个表。迁移的名称。尽量应该是可描写叙述的。生成器将扫描你的生成器名字的第一个单词,并尽力确定怎样继续。
比如,对于迁移create_posts_table
,keyword"create",意味着我们应该准备必要的架构来创建表。
假设你使用add_user_id_to_posts_table
取代迁移的名字,在上面的演示样例中。keyword"add"。意味着我们将加入一行到现有的表中,然我们看看这个生成器命令。
php artisan generate:migration add_user_id_to_posts_table
这个命令将会准备一个以下这种样板:
<?php use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint; class AddUserIdToPostsTable extends Migration { /**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('posts', function(Blueprint $table) { });
} /**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('posts', function(Blueprint $table) { });
} }
注意:这一次我们没有做Schema::create
keyword
当你在写迁移的名字的时候,使用以下的keyword给生成器提供提示。
create
ormake
(create_users_table
)add
orinsert
(add_user_id_to_posts_table
)remove
(remove_user_id_from_posts_table
)delete
ordrop
(delete_users_table
)
生成数据库模式
这是很美丽的,可是让我们更进一步,生成数据库模式的同一时候。使用fields
选项。
php artisan generate:migration create_posts_table --fields="title:string, body:text"
在我们解释这个选项之前。让我们先看一下输出:
<? php use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint; class CreatePostsTable extends Migration { /**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('posts', function(Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->text('body');
$table->timestamps();
});
} /**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('posts');
} }
美丽!少量的提示在这里:
- 生成器将默认使用自增的
id
字段作为主键 - 它解析
fields
选项,并加入这些字段 - drop方法可以足够聪明的意识到。在相反的情况下,这个表应该被全然删除
声明字段,使用逗号+空格分隔键值列表[key:value:option sets],当中key
表示字段的名称,value
表示字段的类型,option
表示制定索引或者像是unique
、nullable
这种属性。
这里是一些演示样例:
--fields="first:string,
last:string"--fields="age:integer,
yob:date"--fields="username:string:unique,
age:integer:nullable"--fields="name:string:default('John
Doe'), bio:text:nullable"--fields="username:string(30):unique,
age:integer:nullable:default(18)"
请注意最后一个演示样例,这里我们指定了string(30)
的字符串限制。这将产生$table->string('username',
30)->unique();
使用生成器删除表是可能的:
php artisan generate:migration delete_posts_table
作为最后一个演示样例i,让我们执行一个迁移,从tasks
表中,删除completed
字段。
php artisan generate:migration remove_completed_from_tasks_table --fields="completed:boolean"
这一次,我们使用了"remove"keyword,生成器知道它要删除一个字段,而且把它加入到down()
方法中。
<?php use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint; class RemoveCompletedFromTasksTable extends Migration { /**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('tasks', function(Blueprint $table) {
$table->dropColumn('completed');
});
} /**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('tasks', function(Blueprint $table) {
$table->boolean('completed');
});
} }
模型
php artisan generate:model Post
这将生成一个文件。app/models/Post.php
而且写入以下的样板
<?php class Post extends \Eloquent { }
视图
视图生成器相当简单。
php artisan generate:view admin.reports.index
这个命令将创建一个空的视图。/app/views/admin/reports/index.blade.php
。假设提供的目录不存在,它会自己主动帮你创建
Seeds 生成数据[译注:应该是用来填充測试数据]
Laravel为我们提供了很灵活的方式来填充表 Laravel provides us with a flexible way to seed new tables.
php artisan generate:seed users
设置你想要生成的生成文件參数。这将生成 app/database/seeds/UsersTableSeeder.php
并用一下内容作为填充:
<? php // Composer: "fzaninotto/faker": "v1.3.0"
use Faker\Factory as Faker; class UsersTableSeeder extends Seeder { public function run()
{
$faker = Faker::create(); foreach(range(1, 10) as $index)
{
User::create([ ]);
}
} }
这将使用流行的Faker库为你提供一个主要的样板。这将是一个很美丽的方式来生成你的数据库表。
不要忘记使用Composer来安装Faker。
关联表[译注:pivot 这个词愿意是中心点、中枢的意思,这里翻译成关联表比較合适,通俗一点就是两个表的mapping关系表,带有外键约束]
当你须要一个关联表时,generate:pivot
能够加速建立对应的表。
简单的传递两个须要关联的表的名字。对于orders
和users
表。你能够:
php artisan generate:pivot orders users
这个命令将创建以下的迁移:
<?php use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint; class CreateOrderUserTable extends Migration { /**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('order_user', function(Blueprint $table) {
$table->increments('id');
$table->integer('order_id')->unsigned()->index();
$table->foreign('order_id')->references('id')->on('orders')->onDelete('cascade');
$table->integer('user_id')->unsigned()->index();
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
$table->timestamps();
});
} /**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('order_user');
} }
注意,它会正确设置你提供的两个表名,排名不分先后。如今。执行php
来创建你的关联表!
artisan migrate
资源
generate:resource
命令将会为你坐一系列的事情:
- 生成一个模型
- 生成index, show, create, edit视图
- 生成一个控制器
- 生成一个数据库结构迁移
- 生成一个数据库填充
- 迁移这个数据库
当你触发这个命令,它将对每一个动作进行问询。通过这个方式,你能够告诉生成器,哪些是你确实须要的。
样例
想象假设你须要创建一个方法来显示文章。
你须要手动创建一个控制器。一个模型,一个数据库迁移而且填充它,而且创建一个数据库填充…为什么不用生成器来做呢?
php artisan generate:resource post --fields="title:string, body:text"
假设你对每一个询问说yes。这个命令会给你例如以下样板:
- app/models/Post.php
- app/controllers/PostsController.php
- app/database/migrations/timestamp-create_posts_table.php (including the schema)
- app/database/seeds/PostsTableSeeder.php
Scaffolding 脚手架
脚手架生成器类似于generate:resource
。除了创建一些初始化样板外。同一时候也是为了方便。
比如。在执行generate:scaffold
时。你的控制器模板将会将会是:
post
<?php class PostsController extends \BaseController { /**
* Display a listing of posts
*
* @return Response
*/
public function index()
{
$posts = Post::all(); return View::make('posts.index', compact('posts'));
} /**
* Show the form for creating a new post
*
* @return Response
*/
public function create()
{
return View::make('posts.create');
} /**
* Store a newly created post in storage.
*
* @return Response
*/
public function store()
{
$validator = Validator::make($data = Input::all(), Post::$rules); if ($validator->fails())
{
return Redirect::back()->withErrors($validator)->withInput();
} Post::create($data); return Redirect::route('posts.index');
} /**
* Display the specified post.
*
* @param int $id
* @return Response
*/
public function show($id)
{
$post = Post::findOrFail($id); return View::make('posts.show', compact('post'));
} /**
* Show the form for editing the specified post.
*
* @param int $id
* @return Response
*/
public function edit($id)
{
$post = Post::find($id); return View::make('posts.edit', compact('post'));
} /**
* Update the specified resource in storage.
*
* @param int $id
* @return Response
*/
public function update($id)
{
$post = Post::findOrFail($id); $validator = Validator::make($data = Input::all(), Post::$rules); if ($validator->fails())
{
return Redirect::back()->withErrors($validator)->withInput();
} $post->update($data); return Redirect::route('posts.index');
} /**
* Remove the specified resource from storage.
*
* @param int $id
* @return Response
*/
public function destroy($id)
{
Post::destroy($id); return Redirect::route('posts.index');
} }
请注意我们鼓舞您去改动这些自己主动生成的控制器。它仅仅是一个简单的開始。
Configuration 配置
你也许想改动你的模板–自己主动生成的文件是如何格式化的。考虑到这一点。你须要公布你的模板。生成器将会使用它们。
php artisan generate:publish-templates
你要复制全部app/templates
文件夹下的模板。你能够改动这些仅仅要你惬意它的格式。假设你喜欢不同的文件夹:
php artisan generate:publish-templates --path=app/foo/bar/templates
当你执行generate:publish-templates
,它也会将配置公布到app/config/packages/way/generators/config/config.php
文件。
这个文件看起来有点像:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?
return
/* |-------------------------------------------------------------------------- | |-------------------------------------------------------------------------- | */ 'model_template_path'
'/Users/jeffreyway/Desktop/generators-testing/app/templates/model.txt' , 'scaffold_model_template_path'
'/Users/jeffreyway/Desktop/generators-testing/app/templates/scaffolding/model.txt' , 'controller_template_path'
'/Users/jeffreyway/Desktop/generators-testing/app/templates/controller.txt' , 'scaffold_controller_template_path'
'/Users/jeffreyway/Desktop/generators-testing/app/templates/scaffolding/controller.txt' , 'migration_template_path'
'/Users/jeffreyway/Desktop/generators-testing/app/templates/migration.txt' , 'seed_template_path'
'/Users/jeffreyway/Desktop/generators-testing/app/templates/seed.txt' , 'view_template_path'
'/Users/jeffreyway/Desktop/generators-testing/app/templates/view.txt' , /* |-------------------------------------------------------------------------- | |-------------------------------------------------------------------------- | */ 'model_target_path'
'models' ), 'controller_target_path'
'controllers' ), 'migration_target_path'
'database/migrations' ), 'seed_target_path'
'database/seeds' ), 'view_target_path'
'views' ) ]; |
同一时候。当你改动这个文件的时候,注意你也能够更新每一个默认的生成器目标文件夹。
Shortcuts 快捷命令
由于你可能会一次重新的键入例如以下命令,命令别名显然是有意义的。
# Generator Stuff
alias g:m="php artisan generate:model"
alias g:c="php artisan generate:controller"
alias g:v="php artisan generate:view"
alias g:s="php artisan generate:seed"
alias g:mig="php artisan generate:migration"
alias g:r="php artisan generate:resource"
这些将被保存。比如,你的~/.bash_profile
或者 ~/.bashrc
文件里。
原创文章。转载请注明: 转载自始终不够
翻译:Laravel-4-Generators 使用自己定义代码生成工具高速进行Laravel开发的更多相关文章
- 基于SqlSugar的开发框架循序渐进介绍(3)-- 实现代码生成工具Database2Sharp的整合开发
我喜欢在一个项目开发模式成熟的时候,使用代码生成工具Database2Sharp来配套相关的代码生成,对于我介绍的基于SqlSugar的开发框架,从整体架构确定下来后,我就着手为它们量身定做相关的代码 ...
- 在代码生成工具Database2Sharp中使用ODP.NET(Oracle.ManagedDataAccess.dll)访问Oracle数据库,实现免安装Oracle客户端,兼容32位64位Oracle驱动
由于我们开发的辅助工具Database2Sharp需要支持多种数据库,虽然我们一般使用SQLServer来开发应用较多,但是Oracle等其他数据库也是常用的数据库之一,因此也是支持使用Oracle等 ...
- 19.翻译系列:EF 6中定义自定义的约定【EF 6 Code-First约定】
原文链接:https://www.entityframeworktutorial.net/entityframework6/custom-conventions-codefirst.aspx EF 6 ...
- 第二章 Mybatis代码生成工具
1.mybatis-generator作用 1).生成pojo 与 数据库结构对应 2).如果有主键,能匹配主键 3).如果没有主键,可以用其他字段去匹配 4).动态select,update,del ...
- Web API应用架构在Winform混合框架中的应用(4)--利用代码生成工具快速开发整套应用
前面几篇介绍了Web API的基础信息,以及如何基于混合框架的方式在WInform界面里面整合了Web API的接入方式,虽然我们看似调用过程比较复杂,但是基于整个框架的支持和考虑,我们提供了代码生成 ...
- RUF MVC5 Repositories Framework Generator代码生成工具介绍和使用
RUF MVC5 Repositories Framework Generator代码生成工具介绍和使用 功能介绍 这个项目经过了大半年的持续更新到目前的阶段基本稳定 所有源代码都是开源的,在gith ...
- 配置VS代码生成工具ReSharper快捷键
VS代码生成工具ReSharper提供了丰富的快捷键,可以极大地提高你的开发效率.安装ReSharper后首次启动Visual Studio时,会出现一个名为ReSharper Keyboard Sc ...
- ORM框架-VB/C#.Net实体代码生成工具(EntitysCodeGenerate)【ECG】4.5
摘要:VB/C#.Net实体代码生成工具(EntitysCodeGenerate)[ECG]是一款专门为.Net数据库程序开发量身定做的(ORM框架)代码生成工具,所生成的程序代码基于OO.ADO.N ...
- 强大的代码生成工具MyGeneration
强大的代码生成工具MyGeneration 转 MyGeneration是一个功能很强大的代码生成工具.通过编写包含各种类型脚本(C#,VB.Net,JScript,VBScript)的模板,通过数据 ...
随机推荐
- ExecutorService的execute和submit方法
三个区别: 1.接收的参数不一样 2.submit有返回值,而execute没有 Method submit extends base method Executor.execute by creat ...
- apple iMac一体机 装双系统 实战! (Apple +Win 7 64bit)
http://group.zol.com.cn/1/641_485.html http://tieba.baidu.com/p/2532811864 http://www.jb51.net/os/82 ...
- Unity Game Starter Kit for Windows Store and Windows Phone Store games
原地址:http://digitalerr0r.wordpress.com/2013/09/30/unity-game-starter-kit-for-windows-store-and-window ...
- [Swift A] - Welcome to Swift
Swift is a new object-oriented programming language for iOS and OS X development. Swift is modern, p ...
- 解决Html.CheckBoxFor中”无法将类型 bool 隐式转换为 bool。存在一个显式转换..."的方法
在后面加.Value属性 @Html.CheckBoxFor(m => m.IsComment.Value, new { style = "vertical-align: middle ...
- js 函数定义的2种方式
js 函数定义的2种方式 CreateTime--2018年3月29日18:36:14 Author:Marydon 方式一: /** * 函数式声明 */ function mode() { c ...
- Android自动化框架
Android自动化框架 已有 2085 次阅读2014-8-26 12:19 | Android 几种常见的Android自动化测试框架及其应用 随着Android应用得越来越广,越来越多的公司推出 ...
- Ubuntu 分区方案参考
2011-10-25 10:09 对于初次接触的一般用户(包括双系统用户): / 5-10G(玩玩的话5G就够,长期使用的话推荐10G) /usr 5-10 ...
- Linux命令-目录处理命令:cp
cp /etc/grub.conf /tmp 复制一个文件 cp -r /tmp/beijing/dongchengqu /root 复制dongchengqu目录到root目录 cp /root/i ...
- 如何让iOS模拟器也能测试蓝牙4.0程序?
买一个CSR蓝牙4.0 USB适配器,插在Mac上 在终端输入sudo nvram bluetoothHostControllerSwitchBehavior="never" 重启 ...