我2小时新进Symfony2,请原谅我的noob问题。我收到一条错误说明:
Unable to find template "Akademiah:MemberBundle:Default:index.html.twig".
500 Internal Server Error - InvalidArgumentException
3 linked Exceptions: Twig_Error_Loader » InvalidArgumentException » InvalidArgumentException »
不知道为什么会出现这种情况,因为我正在按照教程进行操作,预计这些工作会在这个阶段发挥作用?
我的控制器中有以下内容:
<?php
namespace Akademiah\MemberBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
class DefaultController extends Controller
{
/**
* @Route("/hello/{name}")
* @Template()
*/
public function indexAction($name)
{
return $this->render('MemberBundle:Default:index.html.twig',array('name'=>$name));
}
}
我使用php app / console命令创建了包。感谢帮助。
答案 0 :(得分:0)
您应该检查index.html.twig
文件夹中是否存在名为resources/twig/default/
的文件。如果没有,请创建它。