gpt4 book ai didi

php - Laravel: 'null value in column "密码“违反了非空约束”,即使确实提供了密码

转载 作者:行者123 更新时间:2023-11-29 14:09:31 26 4
gpt4 key购买 nike

我在 Laravel 5.5 中构建一个 GraphQL API,我从 User::create() 返回一个错误,提示我没有为“密码”列提供值,即使我确实做到了。这是来自 User::create() 的完整消息:

SQLSTATE[23502]: Not null violation: 7 ERROR:  null value in column \"password\" violates not-null constraint
DETAIL: Failing row contains (507, null, null, 2017-09-23 14:12:11, 2017-09-23 14:12:11, 658495, 56854685, Joe, Appleseed, royal, 1970-01-01, +31684736248, null, Poplar St, 14a, 1012AB, London, null, joe.appleseed@overwatch.com, joe.appleseed@mindef.nl, null). (SQL: insert into \"users\" (\"wid\", \"unumber\", \"first_name\", \"last_name\", \"civil_status\", \"birthdate\", \"phone_number\", \"street\", \"street_number\", \"postal_code\", \"city\", \"email_address_overwatch\", \"email_address_mindef\", \"updated_at\", \"created_at\") values (658495, 56854685, Joe, Appleseed, royal, 1970-01-01, +31684736248, Poplar St, 14a, 1012AB, London, joe.appleseed@overwatch.com, joe.appleseed@mindef.nl, 2017-09-23 14:12:11, 2017-09-23 14:12:11) returning \"id\")

这是生成它的代码,在我的 UserRepository 中:

/**
* Creates a new User with $data
*
* @param array $data
* @return User
*/
public function create(array $data): User
{
$data['password'] = bcrypt($data['password']);
$user = User::create($data);
$this->log(Auth::user(), $user, 'created');

return $user;
}

我觉得这非常奇怪,因为我确实提供了密码值。我可以通过使用 dd($data) 看到这一点:(就在 $data['password'] = bcrypt($data'password');

array:15 [
\"wid\" => \"658495\"
\"unumber\" => \"56854685\"
\"first_name\" => \"Joe\"
\"last_name\" => \"Appleseed\"
\"civil_status\" => \"royal\"
\"birthdate\" => \"1970-01-01\"
\"phone_number\" => \"+31684736248\"
\"street\" => \"Poplar St\"
\"street_number\" => \"14a\"
\"postal_code\" => \"1012AB\"
\"city\" => \"London\"
\"email\" => \"joe@appleseed.com\"
\"email_address_overwatch\" => \"joe.appleseed@overwatch.com\"
\"email_address_mindef\" => \"joe.appleseed@mindef.nl\"
\"password\" => \"$2y$10$FdLbx/dYkdrjhGNcuCWKkO.bg013Gn0mhs7nKN.nyNztlykWx4jDC\"
]

如你所见,这个数组中肯定有一个password字段。我怎么可能会收到此错误?

一些环境信息:

PHP 7.1.9-1+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Sep  2 2017 05:56:43) ( NTS )
psql (PostgreSQL) 9.5.8
Laravel Framework 5.5.2

最佳答案

我猜密码不是 mass assignable .在您的用户模型中:

protected $fillable = [.... other fields ..., 'password'];

关于php - Laravel: 'null value in column "密码“违反了非空约束”,即使确实提供了密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46380559/

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