ユーザー編集フォームで検証を行っており、ユーザー名がデータベース内で一意であるかどうかを検証しています。
ただし、ユーザーを編集していてユーザー名フィールドを変更しない場合でも、フィールドが一意であるかどうかはチェックされます...
変更されていない場合、現在のユーザー名を無視するlaravel方法はありますか?
もちろん、ドキュメントをもっと読むべきでしたlaravel 4はこれを行います...
$rules = array('username' => 'required|unique:users');
$rules = array('username' => 'required|unique:users,username,'.$id);
上記のように、指定されたIDを無視するようにバリデーターに指示できます。
この解決策は私のために働いた:
protected $rules = array(
'email' => "required|email|unique:users,email,:id",
);
Laravel 4.1の場合、_Illuminate\Validation\Validator
_クラスを拡張する場合は、validateUnique()
メソッドを次のようにオーバーライドします。
_/**
* Validate the uniqueness of an attribute value on a given database table.
*
* If a database column is not specified, the attribute will be used.
*
* @param string $attribute
* @param mixed $value
* @param array $parameters
* @return bool
*/
protected function validateUnique($attribute, $value, $parameters)
{
$this->requireParameterCount(1, $parameters, 'unique');
$table = $parameters[0];
// The second parameter position holds the name of the column that needs to
// be verified as unique. If this parameter isn't specified we will just
// assume that this column to be verified shares the attribute's name.
$column = isset($parameters[1]) ? $parameters[1] : $attribute;
// If the specified ID column is present in the data, use those values; otherwise,
// fall back on supplied parameters.
list($idColumn, $id) = [null, null];
if (isset($parameters[2])) {
list($idColumn, $id) = $this->getUniqueIds($parameters);
if (strtolower($id) == 'null') $id = null;
else if (strtolower($id) == 'id' && isset($this->data[$idColumn])) $id = $this->data[$idColumn];
}
else if (isset($this->data['id'])) {
$idColumn = 'id';
$id = $this->data[$idColumn];
}
// The presence verifier is responsible for counting rows within this store
// mechanism which might be a relational database or any other permanent
// data store like Redis, etc. We will use it to determine uniqueness.
$verifier = $this->getPresenceVerifier();
$extra = $this->getUniqueExtra($parameters);
return $verifier->getCount(
$table, $column, $value, $id, $idColumn, $extra
) == 0;
}
_
バリデータールールでは、これを行うことができます(検証データに存在するid
フィールドをチェックします-これは最も一般的な使用法です):
_$rules = 'unique:model,field';
_
これ(検証データに存在するid
フィールドをチェックします)(上記と同等):
_// specifying anything other than 'id' or 'null' as the 3rd parameter
// will still use the current behavior
$rules = 'unique:model,field,id';
_
またはこれ(検証データに存在するidColumn
フィールドをチェックします):
_// specifying anything other than 'id' or 'null' as the 3rd parameter
// will still use the current behavior
$rules = 'unique:model,field,id,idColumn';
_
こんにちは、バリデーターをサービスとして使用するか、ロジックをコピーして、このように必要に応じて適用できます
$valitator = MyCustomValidator::make()->on('update')->setCurrent($id);
チェックイン: https://github.com/bradleySuira/laravel-context-validator/blob/master/examples/unique-on-update.php