laravel的orm中默认的keyType 是int类型, 所以当model的主键为string类型的时候,会获取到0的值。
解决方法: 在model 里面添加
protected $keyType = 'string';
laravel的orm中默认的keyType 是int类型, 所以当model的主键为string类型的时候,会获取到0的值。
解决方法: 在model 里面添加
protected $keyType = 'string';
本文标题:Laravel 字符主键获取为0
本文链接:https://www.haomeiwen.com/subject/ylqpgftx.html
网友评论