在 django 中,我在将输入到表单中的数字传递给 URL 时遇到问题:
我尝试这样:模板-> index.html
<form action="/mysite/{{ number }}/details.html" method="post">
<p><label for="number">Give me a number:</label>
<input type="text" name="number" id="number" /></p> <input type="submit" value="Submit" />
但结果是/mysite//details.html,而不是/mysite/123/details.html(当用户在请求的表单中输入 123 时)
你能给我一个建议吗?
谢谢,
JJ