Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 joomla 组件,我需要以 Twitter 方式实现“加载更多”分页。我不知道该怎么做,我如何通过使用相同的输出来获取组件的 HTML view.html.php,但没有周围的标记(即模块和模板)。我不确定是否loadTemplate()会完成这项工作。
view.html.php
loadTemplate()
添加参数:
?tmpl=component
或者
?format=raw
到查询字符串。
第一个将加载一个component.php在您的模板文件夹中命名的文件,该文件存在于大多数模板中并且不会加载额外的脚本。
component.php
后者只是输出没有任何模板的裸组件输出,应该是您的首选。