2

extends在模板中处理 usibg 问题

application/views/index/index.volt first(实际上只有一个)行是:

{% extends common/index.volt %}

收到这个:

致命错误:未捕获的异常 'Phalcon\Mvc\View\Exception' 带有消息 'Extends statement must be placed at the first line in ../application/views/index/index.volt on line 1' in ... .\public_html\index.php 第 169 行

....\public_html\index.php 第 169 行是:

echo $application->handle()->getContent();

在演示http://docs.phalconphp.com/ru/latest/reference/volt.html#id33刚刚使用包括

所以只是无法理解 phalcon 是否extends支持

4

1 回答 1

1

也许您的编辑器在 .volt 文件的开头插入了一个 BOM?转到编辑器的编码选项(或编码菜单)并选择“UTF-8 without BOM”。

于 2014-08-21T08:11:10.313 回答