在我的多态关系中,Laravel自动将我的CamelCase id转换为下划线.因此,当我尝试获取$ store-> product时,我收到未找到的列:1054未知列'Products.location_id'.
我的关系看起来像这样.
Class Store() { public function product() { return $this->morphOne('App\Models\Product', 'locationId'); } }
有没有办法不从CamelCase转换为下划线.
编辑它似乎实际上在locationId的末尾添加了"_id".知道如何限制/停止这个吗?
如果您不打算遵循标准命名结构,则该morphOne
方法接受允许您覆盖它的其他参数.
public function morphOne($related, $name, $type = null, $id = null, $localKey = null) { $instance = new $related; list($type, $id) = $this->getMorphs($name, $type, $id); $table = $instance->getTable(); $localKey = $localKey ?: $this->getKeyName(); return new MorphOne($instance->newQuery(), $this, $table.'.'.$type, $table.'.'.$id, $localKey); }
在不知道你的数据库结构的情况下,我可以告诉你的是,第四个参数允许你覆盖id.那是你放的地方locationId
.