渲染模板和数组与车把

时间:2013-08-06 18:47:31

标签: php handlebars.js

我有一个带有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之前的示例。

1 个答案:

答案 0 :(得分:0)

为什么你不能使用像{{! }}这样的Handlebars模板评论?

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