gpt4 book ai didi

php - Laravel 5.1 - 在保存到数据库时生成唯一的 10 个字母数字字符代码

转载 作者:行者123 更新时间:2023-12-02 06:15:37 26 4
gpt4 key购买 nike

我正在使用 Laravel 5.1 并将壁虎保存到数据库中。我的 store 方法代码如下:

public function store(GeckoRequest $request)
{
$user_id = Auth::user()->id;
$input = $request->all();

$input['genetics'] = json_encode($input['genetics'], JSON_FORCE_OBJECT);
$input['user_id'] = $user_id;

Gecko::create($input);

$name = str_replace(' ', '-', $request['name']);

flash()->success('Success!', 'Your gecko has been added to the system');
return redirect()->action('GeckoController@show', [$name]);

}

我知道我可以做 $input['uid'] = str_random(10); - 但我如何确保它实际上是唯一的并且不会如果它不是唯一的,是否重定向回我的表单?

是否有适当的做法来实现这样的目标?

最佳答案

创建一个生成 10 位随 secret 钥的函数,然后将其传递给具有唯一规则集的验证器。如果验证器给你一个错误,重新运行相同的函数来生成一个新的

public function randomId(){

$id = \Str::random(10);

$validator = \Validator::make(['id'=>$id],['id'=>'unique:table,col']);

if($validator->fails()){
return $this->randomId();
}

return $id;
}

关于php - Laravel 5.1 - 在保存到数据库时生成唯一的 10 个字母数字字符代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35083940/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com