我似乎无法更改结果功能使用的模板。我已经使用了结果函数并修改了模板但是使用Page.ss而不是MyCustomResultTemplate.ss进行渲染
public function results($data, $form, $request)
{
// [...]
$templates = array(
'MyCustomResultTemplate',
'Page'
);
return $this->owner->customise($data)->renderWith($templates);
}
MyCustomResultTemplate.ss存在于正确的模板文件夹中,看起来与默认的Page_results.ss文件相同,但仍然没有运气。
我在这里错过了一些路线设置吗?