当前位置:首页 » 数据仓库 » laravel数据库更新只更新验证的值
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

laravel数据库更新只更新验证的值

发布时间: 2023-05-27 04:15:53

⑴ 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安装。