如何更改 Zend Framework 配置中的视图 scriptPath?

发布于 2024-10-10 19:22:03 字数 373 浏览 5 评论 0原文

因为绝对没有关于 Zend Framework 的一般配置的文档 - 这真的让我很生气! - 我必须在这里问这个=(

我想更改我的应用程序的目录结构。我想要视图、助手和布局等位于其他地方(不是默认值)。我知道我可以在 View 对象上更改它,当我有视图对象,但这只是愚蠢的。在我的配置(application.ini)中,我有:

resources.view[] =

它使视图对象始终可用(完美)。它 application.ini 配置文件中?

谢谢!

PS。并配置它,但这不是我想要的。

Since there is absolutely NO DOCUMENTATION on the general config of the Zend Framework - which pisses me off sincerely! - I have to ask this here =(

I want to change the directory structure of my application. I want views and helpers and layouts etc located elsewhere (not the defaults). I know I can change that on the View object, when I have the view object, but that's just silly. This is a config option. In my config (application.ini) I have:

resources.view[] =

which makes a View object available at all times (perfect). How do I config it in the application.ini config file?

Thanks!

PS. I know I could extend the Controller and create a View object there and config it, but that's not what I want. Config should be in the config file. Period.

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

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

发布评论

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

评论(1

寂寞陪衬 2024-10-17 19:22:03

resources.view[] =

执行此操作

resources.view.scriptPath = "/your/path/"

尝试在视图对象上使用以下内容进行检查

getScriptPaths()

After

resources.view[] =

Do this

resources.view.scriptPath = "/your/path/"

Try and check it by using the following on your view object

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