Apache 的速度模板引擎是否可以部分解析 html 模板?
例如:
如果我有这样的模板:
<div class="container">
<div id="section1">Some content of section 1....</div>
<div id="section2">Some content of section 2....</div>
</div>
我只想解析 section1 div 的内容。我怎样才能做到这一点?
我正在使用 Spring MVC 3.0。