gpt4 book ai didi

python - 点击cherrypy中的链接提交表单

转载 作者:太空宇宙 更新时间:2023-11-03 16:16:45 26 4
gpt4 key购买 nike

下面是我的樱桃代码:

class MyApp:
def link_details(self, **params):
pass
link_details.exposed=True

下面是我的html代码:

<form name="form1">
<input type="text" name="username"> <a href="link_details">Click here</a>
</form>

页面被重定向,但我无法访问表单请求参数。我希望通过单击 html 页面中的链接将表单提交到 link_details 方法。我怎样才能做到这一点?

最佳答案

您没有提交表单,您只是链接到另一个页面。

提交表单的最简单方法是使用提交按钮:

<form id="form1" action="/link_details" method="post">
<input type="text" name="username" />
<input type="submit" value="Submit" />
</form>

如果您想使用 <a> 提交表单标签:

<form id="form1" action="/link_details" method="post">
<input type="text" name="username" />
<!-- you can omit the "return false;" part, but since we don't use a "href" attribute on the anchor it does not matter -->
<a onclick="document.getElementById('form1').submit();return false;" target="_self">Submit</a>
</form>

有关表单属性(例如 actionmethod )的更多信息,请访问 https://developer.mozilla.org/de/docs/Web/HTML/Element/form

关于python - 点击cherrypy中的链接提交表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38888383/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com