我正在django的一个小项目中工作,我正在尝试获取用户填写的表单,并将其存储在数据库中。对于表单,我使用ModelForm而不是标准表单。
用户提交表单,其中包含表单创建的组的名称和描述。在将新对象放入数据库之前,我希望将默认值添加到模型中的表单值。
这是Form.py
from django import forms
from django.forms import ModelForm
from tab.models import Group
member_count_choices = (('bronze', '1-4',),
我有一个表格,我通过html在那里输入经度和纬度,然后提交这个信息。现在,我希望在html表单中输入的纬度和经度在称为python脚本中使用。表单中的每个元素都是称为python脚本的命令行参数:
./python.py
如何根据我在网站上以表单提交的纬度和经度信息,使用上面指定的适当参数调用python脚本python.py。下面是html代码的一个片段。
<center>Please Enter a Longitude and Latitude of the point where you want to look at</center>
<c
上下文
我正在处理python视图中的表单。基本的东西。
def index(request):
# Handle form.
if request.method == 'POST':
form = CustomForm(request.POST)
if form.is_valid():
# Do stuff
return HttpResponseRedirect('/thankyou/')
else:
form = CustomForm()
python file including html file in visual studio 2019 如上图所示,我在第7行中放置了断点,从而启动了调试。但在输出窗口中,它没有显示所需的输出,即我在html表单中插入的firstname值。我使用XAMPP服务器在python中显示html表单的值。