我发现你可以将JSON文件转换为PHP数组和对象,并将该输出用作Mustache.php模板引擎的数据,如下例所示:
PHP脚本:
require_once('Mustache/Autoloader.php');
Mustache_Autoloader::register();
$mustache = new Mustache_Engine();
$data_json = file_get_contents('data.json');
$data = json_decode( $data_json, true );
$template = $mustache -> loadTemplate('templates/template.html');
echo $mustache -> render( $template, $data );
JSON数据:
{
"persons": [{
"person": {
"name": "Homer",
"number": 0
},
"person": {
"name": "Marge",
"number": 1
}
}]
}
胡子模板:
{{{# persons }}}
{{{# person }}}
<ul>
<li>Name: {{name}}</li>
<li>Number: {{number}}</li>
</ul>
{{{# person }}}
{{{/ persons }}}
但是PHP抛出了这个错误:
Catchable fatal error:
Object of class __Mustache_12af6f5d841b135fc7bfd7d5fbb25c9e could not be converted to string in C:\path-to-mustache-folder\Engine.php on line 607
这就是PHP指出错误来自的地方(上面错误中的Inside Engine.php文件):
/**
* Helper method to generate a Mustache template class.
*
* @param string $source
*
* @return string Mustache Template class name
*/
public function getTemplateClassName($source)
{
return $this->templateClassPrefix . md5(sprintf(
'version:%s,escape:%s,entity_flags:%i,charset:%s,strict_callables:%s,pragmas:%s,source:%s',
self::VERSION,
isset($this->escape) ? 'custom' : 'default',
$this->entityFlags,
$this->charset,
$this->strictCallables ? 'true' : 'false',
implode(' ', $this->getPragmas()),
$source
));
}
我只是知道数据对话中的错误是错误的,但我对PHP调试并不熟悉,这是实验用的,如果你能告诉我什么是错的,我很感激。
答案 0 :(得分:2)
$template
的{{1}}参数必须是字符串;但是Mustache_Engine::render
返回Mustache_Engine::loadTemplate
类的实例(Mustache随后尝试将其视为字符串,但失败了。)
您应该可以在模板对象上调用Mustache_Template
方法(但未经测试):
render(...)
我对Mustache并不熟悉,但默认情况下according to the documentation $template = $mustache->loadTemplate(...);
$renderedContent = $template->render($data);
需要使用模板字符串调用,而不是模板文件名。还可以考虑配置FileSystemLoader来加载模板:
loadTemplate
答案 1 :(得分:1)
我认为错误就在这里:
{{{# person }}}
{{{/ persons }}}
尝试:
{{{#persons}}}
{{{#person}}}
<ul>
<li>Name: {{name}}</li>
<li>Number: {{number}}</li>
</ul>
{{{/person}}}
{{{/persons}}}