绕过默认视图,Kohana

发布于 2024-11-02 06:31:11 字数 55 浏览 1 评论 0原文

我想返回一个视图,但是 Kohana 强制它通过默认视图,这是我不想要的。如何临时禁用默认视图?

I want to return a view, however Kohana forces it through the default view, which I don't want. How do I temporary disable the default view?

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

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

发布评论

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

评论(2

束缚m 2024-11-09 06:31:11

正如 zombor 评论的那样,如果您真的在谈论模板控制器,您可以通过将这一行放入控制器来禁用其渲染:

$this->auto_render = FALSE;

As zombor comments, if you are really talking about the template controller, you can disable its rendering by putting this line in your controller:

$this->auto_render = FALSE;
赴月观长安 2024-11-09 06:31:11
 public function action_index()
    {
        $user_view = $this->getUserView();

        $this->request->response = View::factory('templates/main',$user_view);
    }
public function getUserView($user_details)
    {
        $user_view['list_page'] = View::factory('templates/usermgt')
                        ->bind('user_detail','data')
                        ->bind('msg','test');
        return $user_view;
    }

其中 getUserView() 返回视图页面到操作索引。
希望它符合你的要求

 public function action_index()
    {
        $user_view = $this->getUserView();

        $this->request->response = View::factory('templates/main',$user_view);
    }
public function getUserView($user_details)
    {
        $user_view['list_page'] = View::factory('templates/usermgt')
                        ->bind('user_detail','data')
                        ->bind('msg','test');
        return $user_view;
    }

where getUserView() returns the view page, to action index.
hope it matches ur requirement

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