gpt4 book ai didi

python - web2py 将值从表单发送到另一个 Controller

转载 作者:行者123 更新时间:2023-12-01 05:15:43 25 4
gpt4 key购买 nike

我正在尝试使用表单从用户那里获取值并将该值发送到另一个 Controller 以对其进行一些操作

Simple Example : how to send x from (default/index.html) to (output/index.html) or how to call the function (output/index) in (default/index.html)

default.py 
index():
return dict()

index.html
{{extend 'layout.html'}}
<form enctype="multipart/form-data" action="{{=URL()}}" method="post">
Your name: <input name="name" /> <input type="submit" />
</form>
{{x=request.vars.name}}

output.py
index(x):
return x

最佳答案

只需将表单发布到您要处理数据的 URL:

<form enctype="multipart/form-data" action="{{=URL('output', 'index')}}" method="post">

关于python - web2py 将值从表单发送到另一个 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23278223/

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