错误消息:TemplateNotFound_ Template "template.html" not found
错误消息:TemplateNotFound: Template "template.html" not found
原因:
- 模板文件路径错误或文件不存在。
解决方法:
-
检查模板文件路径:
- 确认模板文件路径是否正确。
- 检查文件是否存在。
例如,在 Twig 中:
$loader = new \Twig\Loader\FilesystemLoader('templates'); $twig = new \Twig\Environment($loader);
-
使用相对路径:
- 确认模板文件路径是否相对于正确的位置。
例如,在 Twig 中:
{% extends 'base.html' %} {% block content %} <h1>Welcome!</h1> {% endblock %}
content %} <h1>Welcome!</h1> {% endblock %}