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.
当我在 PHP 中创建母版页时,我使用:
<? ob_start(); ?> HTML <? $PAGE_CONTENT = ob_get_contents(); ob_end_clean(); include "master.page.php"; ?>
所以我改变了内容,把它放在一个变量中,然后在 master.page.php 中打印出来。
我现在需要对 JSP 做同样的事情。什么是等价物?我是 JSP 的新手,它是为了工作,我需要帮助。
非常感谢。