Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例外を発生させるには、次のものが必要です。
jinja2.Template("Hello {{ a.x }}").render(a={})
Jinja2 は に対して空の文字列をサイレントに返すためa.x、これは "Hello " としてレンダリングされます。
a.x
未定義の属性で jinja2 に例外を発生させるにはどうすればよいですか?