在 TYPO3 CMS 中调试 Typoscript 的最佳方法是什么?
在 TYPO3 CMS 中调试打字稿的最佳方法是什么?
假设我有一个未显示的列表 - 寻找问题的策略是什么?
What is the best way to debug typoscript in the TYPO3 CMS?
Assuming I have a list, which is not displayed -
what is the strategy to look for the issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
调试 Typoscript 并不是最舒服的任务,但有几种可能性。以下是最常见的技术:
stdWrap.debugFunc
函数包装您的 Typoscript 对象,或对所有MENU
对象使用内置的debugItemConf
方法。调试输出将在前端看到。 在 TYPO3 Wiki 中了解更多信息希望对大家有帮助,有补充的欢迎在评论里补充。
Debugging Typoscript is not the most comfortable task, but there are several possibilities. Here are the most common techniques:
stdWrap.debugFunc
Function or use the build-indebugItemConf
method for allMENU
objects. Debug output will be seen in the frontend. Read more in the TYPO3 WikiHope that helps, please post any additions into the comments.
最重要的是,不要依赖通过谷歌找到的代码。查看 TSref 并检查内容是可能的。
只是一些容易被忽视的小补充(恕我直言):
如果需要在后端调试TypoScript配置,请进入“Info”-Modul,在页面树中选择一个页面,然后在主窗口中选择“Page TSconfig” 。在那里您将获得有关 Page TS Config 的信息。
这些系统扩展通常已安装,但可以停用:
可能会发生其他人刚刚停用它们的情况。
The most important thing is, not to rely on code you found via google. Have a look into TSref and check what is possible.
Just some little additions which are easy to overlook (IMHO):
If you need to debug TypoScript configuration in the backend, go to the "Info"-Modul, select a page in the page tree and then select "Page TSconfig" in the main window. There you will get a info about Page TS Config.
These system extensions are usually installed, but they can be deactivated:
It may happen, that someone else just deactivated them.
简单:在打字稿中使用 headerData 并查看源代码,这样您就可以调试打字稿。
SIMPLE: use headerData in typoscript and view source code by this you can debug typoscript.