如何使用 zend 框架加载某个视图?
我正在按照此链接中的指南加载视图: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该页面底部的评论中有这个问题。 “Steve”说:
你必须告诉它在哪里可以找到视图脚本:
因此在
application/views/scripts/books
中创建booklist.php
文件并插入以下行:之后。
在你的控制器脚本
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 inapplication/views/scripts/books
and insert the line:after
in your controller script.