tp5的模型关联的时候,会到应用的目录模型目录中查找模型,而不是当前目录中查找,可以让当前模型继承自公共目录中的模型。
比如:在common的model中,A模型关联了B模型,查找B模型的时候不会直接在common目录的model目录中查找,而是会到application的model中找B模型。这个时候,可以让B模型也继承common目录中的对应的B模型,在这个common目录的B模型当中写上B有关的关联。
可以通过以下写法来改进:
//例如在 common的模型中这样定义goods方法
public function goods()
{
$module = self::getCalledModule() ?: 'common';
return $this->hasMany("app\\{$module}\\model\\OrderGoods");
}
/**
* 获取当前调用的模块名称
* 例如:admin, api, store, task
* @return string|bool
*/
protected static function getCalledModule()
{
if (preg_match('/app\\\(\w+)/', get_called_class(), $class)) {
return $class[1];
}
return false;
}