Kohana Formo 错误:在 Model_User 中调用的方法无效

发布于 2024-11-17 13:21:13 字数 382 浏览 6 评论 0原文

尝试将 Formo 模块与 ORM 和 Kohana 3.1 一起使用,但不断收到此错误...

Invalid method formo called in Model_User

我尝试使用的任何模型都会收到此错误。用户模型是ORM自带的默认模型。我尝试的代码如下。

    $user = ORM::factory('user', 1);

    $form = Formo::form()
        ->orm('load', $user);

Formo 模块是我可以从 GitHub 获得的最新模块... v2.0RC2-24

我似乎无法弄清楚我可能做错了什么...谢谢...

Trying to use the Formo module with ORM and Kohana 3.1, but keep getting this error...

Invalid method formo called in Model_User

I get this error with any Model I try to use. The user model is the default one that comes with ORM. The code I try is as follows.

    $user = ORM::factory('user', 1);

    $form = Formo::form()
        ->orm('load', $user);

The Formo module is the newest one I could get from GitHub... v2.0RC2-24

I can't seem to figure out what it is that I could be doing wrong... thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北陌 2024-11-24 13:21:13

datasage 你是对的,如果你想“回答”这个问题,我很乐意将答案交给你。我所需要的只是在我的模型中声明 formo() 方法。

class Model_User extends Model_Auth_User {

    // FOR FORMO
    public function formo()
    {

    }

} // End User Model

datasage you are correct, if you wish to "answer" the question I'll gladly hand over the answer to you. All I needed was to declare the formo() method in my models.

class Model_User extends Model_Auth_User {

    // FOR FORMO
    public function formo()
    {

    }

} // End User Model
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文