如何使用 zend 框架加载某个视图?

发布于 2024-11-30 22:39:22 字数 357 浏览 2 评论 0原文

我正在按照此链接中的指南加载视图: http: //framework.zend.com/manual/en/zend.view.introduction.html

但是,我不确定在哪里保存作为要加载的视图文件的 booklist.php 文件。因此,我将其保存在 /views 文件夹中(在脚本文件夹之外)

但是,我收到此错误:

An error occurred

Application error

请帮忙。

I'm following the guide to load a view as in this link : http://framework.zend.com/manual/en/zend.view.introduction.html

However, I'm not sure where to keep the booklist.php file that is the view file to be loaded. So, I kept it inside the /views folder (outside the scripts folder)

But, I'm getting this error :

An error occurred

Application error

Please help.

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

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

发布评论

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

评论(1

汐鸠 2024-12-07 22:39:22

该页面底部的评论中有这个问题。 “Steve”说:

你必须告诉它在哪里可以找到视图脚本:

因此在 application/views/scripts/books 中创建 booklist.php 文件并插入以下行:

$view->setScriptPath(APPLICATION_PATH.'/views/scripts/books');

之后。

$view = new Zend_View();

在你的控制器脚本

There is this question in the comments at the bottom of that page. 'Steve' says:

You have to tell it where to find the view script:

so create the booklist.php file in application/views/scripts/books and insert the line:

$view->setScriptPath(APPLICATION_PATH.'/views/scripts/books');

after

$view = new Zend_View();

in your controller script.

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