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 テンプレート内でパラメーターを使用して AJAX 呼び出しを使用したいと考えています。しかし、どうすればそれを可能にできますか?私はこのようなことをしたいです。
JavaScript:
$.get("test.html", { name: "John", time: "2pm" } );
ジンジャ テンプレート:
<div> {{name}} {{time}} </div>