我的项目中有三个模板——我们称它们为first.html、second.html、third.html。
first.html使用<input>
标签从用户那里获取一个字符串:
<input type="radio" name="selection" value="example_string" />
second.html使用{{selection}}
. (在我的views.pyrequest.POST.get
中,我使用and得到了值render_to_response()
。)
问题是:如何将此值从second.html发送到third.html?我的尝试之一——使用<span>
标签将信息保存在变量中——如下所示,但它似乎不起作用。
<span name="selection" value={{selection}}>{{selection}}</span>
编辑:以下行通过创建一个虚拟的单个单选按钮来工作。我不知道为什么不能创建没有标签的<input>
变量[对用户可见]。
<input type="radio" name="selected" value={{selected}} checked="checked" />