我想将表单提交到当前URI,如下所示:
<form action="${CURRENT_URI}" method="post">
<input type="text" name="email" />
</form>
来自mako模板。但我不确定哪个变量保存当前的uri信息。
感谢。
答案 0 :(得分:1)
实际上,你不需要它。
<form action="" method="post">
<input type="text" name="email" />
</form>
如果您将操作留空,则会将其发布到当前网址。
但是,如果由于某些其他原因需要当前网址,可以通过调用pylons.url.current()