控制器
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 - 等等......)也不是红豆文档中提到的自定义函数(hello)
所以我问出了什么问题或者我应该怎么做才能正常工作