控制器
class User extends MX_Controller{
function __construct() {
parent::__construct();
}
function index(){
$r=R::dispense('group');
$r->GroupName="hh";
$i=R::store($r);
echo $i;
$r->hello();
}
}
模型
class Model_Group extends RedBean_SimpleModel{
function __construct() {
parent::__construct;
}
function open(){
echo "model";
}
function update(){
echo "update";
}
function hello() {
echo "hello";
}
}
输出 它只返回id函数(open -update - etc ........)和自定义函数(hello),如redbean docs中提到的
所以我在问什么是错的或我该怎么做才能正常工作
答案 0 :(得分:1)
根据您的代码,我认为您应该加载模型来解决此问题。
例如:
$this->load->model("module_name/model_name")