⑴ laravel驗證碼 怎麼實現驗證碼刷新
<img src="{{ url('/captcha') }}" onclick="this.src='{{ url('/歲穗森captcha') }}?r='族銷+Math.random();" alt="乎畝">
⑵ 如何手動更新 Laravel Homestead
最簡單的方法:
先運行vagrant虛擬機:
$ vagrant up1
然後輸入
$ vagrant box update1
就會自動進行更新了。但是很可惜,我的網速要更新完800M的homestead要超過一天。於是只好手動操作。
那麼如何手動進行升級呢?其實也很簡單,首先我們先備份一下我們當前homestead中的資料庫,導出到相應文件中。
然後我模孝們直接安裝新版本的Homestead。(參考頂部文章鏈接,如何下載及安裝某一個版本的Hometead)
完成之後,在以下文件夾中,我們可以看到新舊版本的Homestead文件夾:
C:\Users\Your-User-Name.vagrant.d\boxes\laravel-VAGRANTSLASH-homestead
輸入vagrant box list也可以查看已經安裝的虛擬機。
現在我們可以刪除之前的vagrant box:
$ vagrant destroy1
接著再輸入
$ vagrant up1
好了!這下就已經完成了!接下來我們可以重新運行migration並且導入之前備份好的資料庫文件。如肆慧果我們要刪除舊版本的box可以直接手動刪除裂碼答,或者輸入
vagrant box remove laravel/homestead --box-version=2.0.01
其中請用自己的版本號替換--box-version後的數字。
⑶ laravel 怎麼獲取要修改的信息
Laravel 自帶一個簡單、方便的 Validation 類用於驗證輸入的數據,並能獲取不能通過驗證做洞的錯誤消息。
驗證輸入
修改 ArticlesController 控制器 update 動作的代碼:
$rules = array('title' => 'required','text'=>'required');
$validator = Validator::make(Input::all(), $rules);
if ($validator->fails())...
注意:Validator::make 需要兩個參數,輸入的數據和驗證規則。驗證規則是個數組。本例使用的驗證規則是必須輸入,其他驗證規則可以查看幫助文檔。
傳遞錯誤信息
驗證發生錯誤時候,Lavavel能夠用簡單的方法向視圖反饋錯誤消息,繼續上述代碼:
...
if ($validator->fails())
{
return Redirect::route('articles.edit',$id)
->withErrors($validator)
->withInput();
}
...
注意:當錯誤發生時候,
1、Redirect::route('articles.edit',$id)是轉向到修改頁面。
2、->withErrors($validator) 是傳遞驗證錯誤純並枯信息。
3、->withInput();則是傳遞輸入的信息。
顯示錯誤信息
Redirect::route('articles.edit',$id)是轉向到修改頁面,所以現在要在修改視圖中顯示驗證錯誤信息。修改app/views/articles/edit.blade.php文件:
<h1>Ariticle edit</h1> <hr>
@if ($errors->any())
<div id="error_explanation">
<h2>{{ count($errors->all()) }} 錯誤發生:</h2>
<ul>
@foreach ($errors->all() as $message)
<li>{{ $message }}<蔽寬/li>
@endforeach
</ul>
</div><hr>
@endif
錯誤信息在$errors,通過遍歷,將所有的信息顯示出來。
最終頁面
如果修改時,title或text文本框為空的時候,提交,會出現錯誤信息。
練習
再按著本節的方法,給create添加類似的驗證處理。
⑷ laravel用json格式提交數據,驗證層怎麼寫
首先確首早顫認,後台的用戶表,我設計表叫做badmin,每個管理員有用戶名(username),有昵稱(nickname),有郵箱(email),有密碼(password)
這里玩個花,使用laravel的migration來建立表(實際上可以用不著使用這個工具建立表)
1 安裝好最基本的laravel框架
2 創建migration文件:
./artisan migrate:make create-badmin-table
3 發現app/database/migration/下面多了一個php文件:
2014_10_19_090336_create-badmin-table.php
4 往up和down里者敗面增加內容;
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateBadminTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('badmin', function($table)
{
$table->increments('id');
$table->string('nickname', 100)->unique();
$table->string('username', 100)->unique();
$table->string('email', 100)->unique();
$table->string('password', 64);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('badmin');
}
}
5 配置好local的database,app/config/local/database.php
<?php
return array(
'fetch' => PDO::FETCH_CLASS,
'default' => 'mysql',
'connections' => array(
'mysql' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 』test',
'username'睜高 => 'yejianfeng',
'password' => '123456',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
),
'migrations' => 'migrations',
);
6 創建數據表:
./artisan migrate --env=local
這個時候去資料庫看,就發現多了一張badmin表,數據結構如下:
CREATE TABLE `badmin` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`nickname` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`username` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `badmin_nickname_unique` (`nickname`),
UNIQUE KEY `badmin_username_unique` (`username`),
UNIQUE KEY `badmin_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
要問這里為什麼多出了create_at和update_at,這是laravel默認為每個表創建的欄位,而且在使用Eloquent進行增刪改查的時候能自動更新這兩個欄位
7 創建個Model:
<?php
use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;
class Badmin extends Eloquent implements UserInterface, RemindableInterface {
use UserTrait, RemindableTrait;
protected $table = 'badmin';
protected $hidden = array('password');
public static $rules = [
'nickname' => 'require|alpha_num|min:2',
'username' => 'require',
'email'=>'required|email|unique:users',
'password'=>'required|alpha_num|between:6,12|confirmed',
];
}
這里必須要implements UserInterface和RemindableInterface
8 把model和Auth關聯上,修改app/config/auth.php
<?php
return array(
// 默認的用戶驗證驅動
// 可以是database或者eloquent
'driver' => 'eloquent',
// 只有驅動為eloquent的時候才有用
'model' => 'Badmin',
);
這里的driver可以是eloquent或者database,使用eloquent就告訴Auth組件說,用戶認證類是Badmin這個類管的。這里的model是有命名空間的,就是說如果你的admin類是\Yejianfeng\Badmin,這里就應該改成』\Yejianfeng\Badmin』
9 好了,這個時間其實邏輯部分已經搭建完畢了,你已經可以在controller種使用
Auth::attempt(XXX) 做許可權認證
Auth::user() 獲取登錄用戶(一個Badmin類)
等。
10 下面要建立一個用戶登錄頁面:
11 設置路由:
<?php
// 不需要登錄驗證的介面
Route::get('/', ['as' => 'user.login','uses'=>'UserController@getLogin']);
Route::get('user/login', ['as' => 'login', 'uses' => 'UserController@getLogin']);
Route::post('user/login', ['as' => 'login', 'uses' => 'UserController@postLogin']);
// 需要登錄驗證才能操作的介面
Route::group(array('before' => 'auth'), function()
{
Route::get('user/logout', ['as' => 'logout', 'uses' => 'UserController@getLogout']);
Route::get('user/dashboard', ['as' => 'dashboard', 'uses' => 'UserController@getDashboard']);
});
12 設置controller:
<?php
class UserController extends BaseController {
// 登錄頁面
public function getLogin()
{
return View::make('user.login');
}
// 登錄操作
public function postLogin()
{
if (Auth::attempt(array('email'=>Input::get('email'), 'password'=>Input::get('password')))) {
return Redirect::to('user/dashboard')
->with('message', '成功登錄');
} else {
return Redirect::to('user/login')
->with('message', '用戶名密碼不正確')
->withInput();
}
}
// 登出
public function getLogout()
{
Auth::logout();
return Redirect::to('user/login');
}
public function getDashboard()
{
return View::make('user.dashboard');
}
// 添加新用戶操作
public function getCreate()
{
return View::make('user.create');
}
// 添加新用戶操作
public function postCreate()
{
$validator = Validator::make(Input::all(), User::$rules);
if ($validator->passes()){
$bAdmin = new Badmin();
$bAdmin->nickname = Input::get('nickname');
$bAdmin->username = Input::get('username');
$bAdmin->email = Input::get('email');
$user->password = Hash::make(Input::get('password'));
$user->save();
Response::json(null);
} else {
Response::json(['message' => '注冊失敗'], 410);
}
}
}
13 設置下filter,app/filter.php
Route::filter('auth', function()
{
if (Auth::guest())
{
if (Request::ajax())
{
return Response::make('Unauthorized', 401);
}
else
{
return Redirect::guest('/');
}
}
});
將這里認證失敗後的地址轉到/ 路徑
14 設置views/user/login.blade.php
⑸ 安裝laravel怎麼更新php版本
安裝laravel怎麼更罩橘新php版本
通過 Laravel 安裝器安裝 1 先物悶鏈下載 Laravel 安裝罩孫器 PHAR 文件。為了方便起見,將該文件重命名為 laravel 並移動至 /usr/local/bin目錄。完成後,只需在你指定的目錄下輸入簡單的 laravel new 命令即可創建一個全新的Laravel安裝。