我正在使用wtforms,我需要创建一个基于数据库中的信息生成表单定义的东西;动态表单创建。我已经了解了需要做什么,而我刚刚开始。我可以创建表单并将它们与wtforms / flask一起使用,但是根据数据从表单到表单略有不同的定义表单目前超出了我目前的技能水平。
有没有人这样做并提供一些意见?有点模糊的问题,还没有实际的代码。我没有找到任何例子,但这并非不可能。
mass of variable data to be used in a form --> wtforms ---> form on webpage
编辑:
所以,'例如'我们可以使用调查。调查由几个SQLAlcehmy模型组成。调查是一个包含任意数量相关问题模型的模型(问题属于调查,而且复杂问题也很复杂)。为了简化,我们使用简单的json / dict伪代码:
{survey:"Number One",
questions:{
question:{type:truefalse, field:"Is this true or false"},
question:{type:truefalse, field:"Is this true or false"},
question:{type:text, field:"Place your X here"}
}
}
{survey:"Number Two",
questions:{
question:{type:text, field:"Answer the question"},
question:{type:truefalse, field:"Is this true or false"},
question:{type:text, field:"Place your email address here"}
}
}
想象一下,而不是这个,数百种不同的长度,5 +场类型。如何使用WTForms管理表单,或者我甚至需要使用wtforms?我可以根据需要定义静态表单,但不是动态的。
顺便说一句,我在rails中使用simpleform做了类似的事情但是因为我在Python atm工作(在不同的东西上,我使用调查的东西作为例子,但问题/字段/答案的事情抽象我需要的许多类型的输入。
所以是的,我可能需要建造某种工厂,这样做需要一些时间,例如:
http://wtforms.simplecodes.com/docs/1.0.2/specific_problems.html
https://groups.google.com/forum/?fromgroups=#!topic/wtforms/cJl3aqzZieA
答案 0 :(得分:4)
只需在运行时将相应的字段添加到基本表单即可。这是一个 sketch ,你可以怎么做(尽管很简单):
class BaseSurveyForm(Form):
# define your base fields here
def show_survey(survey_id):
survey_information = get_survey_info(survey_id)
class SurveyInstance(BaseSurveyForm):
pass
for question in survey_information:
field = generate_field_for_question(question)
setattr(SurveyInstanceForm, question.backend_name, field)
form = SurveyInstanceForm(request.form)
# Do whatever you need to with form here
def generate_field_for_question(question):
if question.type == "truefalse":
return BooleanField(question.text)
elif question.type == "date":
return DateField(question.text)
else:
return TextField(question.text)
答案 1 :(得分:0)
class BaseForm(Form):
@classmethod
def append_field(cls, name, field):
setattr(cls, name, field)
return cls
from forms import TestForm
form = TestForm.append_field("do_you_want_fries_with_that",BooleanField('fries'))(obj=db_populate_object)
我为所有表单使用扩展类 BaseForm ,并在类上有一个方便的append_field函数。
返回附加了字段的类,因为(表单字段的)实例不能附加字段。