0

我有一个带有 php 注释的模板把手。我不希望 html 结果包含这些注释 php,而且我不能使用像 {{! }}。

$模板:

<?php
/**
* Template to show the Section on the front end.
*
* @uses    array   $options                                  A collection
* @uses    string  $options['section_additional_classes']    A list of additional
*
* @uses    array   $dropzones          A collection of widget dropzones.
* @uses    string  $dropzones['A']     A first dropzone.
*
* @package admin-panel
*/
?>
<script data-widget-template="frontend-section" type="text/x-handlebars-template">
 <div class="row-fluid {{ options.section_additional_classes }}">
   <div class="span12">
     {{& dropzones.A }}
   </div>
 </div>
</script>

我的带有车把的代码渲染是(例如):

$hdlbars = new Handlebars_Engine();
$array_content_to_replace = array( 'dropzones' => array('A' => '<strong> Hello World!!</strong>'), 'options' => ('section_additional_classes') => 'class-example');

echo $hdlbars->render($template, array_content_to_replace );

之前的示例返回带有 php 注释的 html。

4

1 回答 1

0

为什么不能使用 Handlebars 模板注释{{! }}

这确实会解决您的问题,只需替换<?php ?>评论中的标签,该代码将从最终模板中删除。

于 2013-08-12T01:15:56.073 回答