与骆驼案相关的Laravel多态关系问题

时间:2015-12-03 18:57:22

标签: php laravel laravel-5 eloquent

在我的多态关系中,Laravel自动将我的CamelCase id转换为下划线。因此,当我尝试获取$ store->产品时,我会收到未找到的列:1054未知列' Products.location_id'。

我的关系看起来像这样。

Class Store() {
    public function product() {
        return $this->morphOne('App\Models\Product', 'locationId');
    }
}

有没有办法不从CamelCase转换为下划线。

EDIT 它似乎实际上正在添加" _id"到locationId的末尾。知道如何限制/停止这个吗?

2 个答案:

答案 0 :(得分:5)

如果您不打算遵循标准命名结构,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);
}

在不知道你的数据库结构的情况下,我可以告诉你的是第4个参数允许你覆盖id。这就是你放locationId的地方。

答案 1 :(得分:1)

对于morphTo方法,您可以传递这些参数

$this->morphTo($name = null, $type = null, $id = null, $ownerKey = null);

其中

$name = foreign table columnable_type
$id   = foreign table columnable_id
$ownerKey = the primary model id