doy57007 2019-02-17 11:50
浏览 95
已采纳

laravel自定义请求验证ID

hi i have laravel project and im using custom request this is my request code

public function rules()
{
    if($this->method() == 'POST' and $this->ajax())
    {
        return [
            'id' => 'integer|min:1|unique:archive_categorys',
            'archive_category_name' => 'max:50|min:1|unique:archive_categorys',
            'archive_category_id' => 'nullable|integer|min:1|max:'.Archive_category::max('id'),
            'archive_category_max' => 'nullable|integer|min:1|',
            'archive_category_plus_value' => 'nullable|integer|min:1|',
            'image' => 'nullable|image|mimes:jpg,jpeg,gif,png|max:2048',
        ];              
    }
    elseif($this->method() == 'PATCH' )
    {
        return [
            'id' => 'required|min:1|unique:archive_categorys,id,'.$this->id,
            'archive_category_name' => 'required|max:50|min:1|unique:archive_categorys,archive_category_name,'.$this->id,
            'archive_category_id' => 'nullable|min:1|max:'.Archive_category::max('id'),
            'archive_category_max' => 'nullable|integer|min:1|',
            'archive_category_plus_value' => 'nullable|integer|min:1|',
            'image' => 'nullable|image|mimes:jpg,jpeg,gif,png|max:2048',
        ];          
    }
    else
    {
        return false;
    }
}

now my problem with method patch

'id' => 'required|min:1|unique:archive_categorys,id,'.$this->id,

now if i tried to change archive_categorys with id 1 to 2 if there is no archive_categorys with id 2 its will update successfully but if there is anther archive_categorys with id 2 its will pass and get error 1062 Duplicate entry
so how can i check unique value in laravel when update thanks

  • 写回答

1条回答 默认 最新

  • dongyou7292 2019-02-17 12:37
    关注

    Considering that you have POST route creating a new entry, id should not be ideally sent from the frontend but should be added automatically as primary key from MySQL.

    Also in your PATCH route, you should send an id to validate if it exists.

    Please check updated validation :

    public function rules()
    {
        if($this->method() == 'POST' and $this->ajax())
        {
            return [
                'archive_category_name' => 'max:50|min:1|unique:archive_categorys,name',
                'archive_category_max' => 'nullable|integer|min:1',
                'archive_category_plus_value' => 'nullable|integer|min:1',
                'image' => 'nullable|image|mimes:jpg,jpeg,gif,png|max:2048',
            ];              
        }
        elseif($this->method() == 'PATCH' )
        {
            return [
                'id' => 'required|exists:archive_categorys,id,',
                'archive_category_name' => 'required|max:50|min:1|unique:archive_categorys,archive_category_name,'.$this->input('id'),
                'archive_category_max' => 'nullable|integer|min:1',
                'archive_category_plus_value' => 'nullable|integer|min:1',
                'image' => 'nullable|image|mimes:jpg,jpeg,gif,png|max:2048',
            ];          
        }
        return [];
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序