我有一个长长的表格:
即
Question1 = TextAreaField('What is your name?')
...
Question100=TextAreaField('Describe your role')
用户提交表单时,flask检索每个问题的数据:
即
Question1=form.Question1.data
..
Question100=form.Question100.data
然后我使用sql将数据写入数据库。
cursor.executve("INSERT INTO table (Q1,Q100) values (%s,%s)", (Question1, Question100))
sql注入不是问题,我不希望使用sqlalchemy。有没有更有效的方法?
编辑:假设某些字段类型是FieldList、formfields或hiddenfields。我怎样才能把这些写进table里?我怎么能在循环中跳过它们呢?
1条答案
按热度按时间bwntbbo31#
快速易读的解决方案
或者,如果您喜欢按类型筛选: