嗨我试图使用$ foreign_keys功能,如下所示
public $foreign_keys = array('continent_id' => array(FUEL_FOLDER => 'continents_model'));
但收到错误
An Error Was Encountered Unable to locate the file: continents_model.php
当我尝试使用$belongs_to
这些模块的位置是:
\fuel\modules\packages\models
\fuel\modules\continents\models
我的文件夹结构根据图片
我的模型代码如下
我应该做什么改变才能获得模型路径
答案 0 :(得分:1)
我认为问题在于使用FUEL_FOLDER而不是模块的名称。请尝试以下方法:
public $foreign_keys = array('continent_id' => array('continents' => 'continents_model'));