Blogger Information
Blog 81
fans 1
comment 0
visits 124108
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
tp5框架下的信息编辑判断用户唯一。unique
有什么是忘不了的的博客
Original
2416 people have browsed it

在tp验证器类中内置了,很多的验证规则,这里讲一下判断字段的唯一。

unique:User,name 介绍:unique是关键字,user是表名,name是字段名。

protected $rule = [
    'name|用户名'   =>'require|chsDash|unique:User,name',
]

那如何判断,在修改页面时候 除去自己值 的信息唯一呢。

其实很简单,tp会自己去判断。你只需要通过页面传一个主键过来就可以。

<input type="hidden" name='id' id="id" value="{$data['id']}">

注意:name='主键名',value='主键值'  这两个值必须填。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post