Get value from dynamic radiofield in flask
I'm working on a quiz app and I got stuck on getting the answer from the form where i have a RadioButton.
Relevant code:
This is my html form:
{% for answer in answers %}
<form method="POST" action="">
<div class="btn-group-lg" data-toggle="buttons">
<label class="btn btn-outline-info">
<input type="radio" name="options" id="option" class="btn btn-primary" value="Submit" required> {{answer.answer}}
</label>
</div>
</form>
{% endfor %}
Here I have the .py code where i make a form for my RadioButton, where I make my root and i have my functions:
class QuestionForm(Form):
radio_button = RadioField('option', choices=)
question_list =
answer_list =
@app.route('/question/<int:index>/', methods=['GET','POST'])
def question(index):
questions = getQuestions()
for question in questions:
question_list.append(question['question_id'])
answers = getQuestionAnswers(question_list[index])
questions_lenght = len(questions)
form = QuestionForm()
if request.method == 'POST' and form.validate():
option = form.radio_button.data
print(option)
return render_template('question.html', question=questions[index]["question"], answers=answers, index=index, questions_lenght=questions_lenght, form=form)
return render_template('question.html', question=questions[index]["question"], answers=answers, index=index, questions_lenght=questions_lenght, form=form)
def getQuestions():
mysql = MySQLdb.connect(host="localhost",
user="",
passwd="",
db="",
cursorclass=MySQLdb.cursors.DictCursor)
cur = mysql.cursor()
cur.execute("SELECT * FROM questions")
questions = cur.fetchall()
cur.close()
return questions
def getQuestionAnswers( question_id ):
mysql = MySQLdb.connect(host="localhost",
user="",
passwd="",
db="",
cursorclass=MySQLdb.cursors.DictCursor)
cur = mysql.cursor()
cur.execute("SELECT * FROM answers WHERE question_id = %s", [question_id])
answers = cur.fetchall()
cur.close()
return answers
if __name__ == '__main__':
app.secret_key=''
app.run(debug=True)
My problem is in the following code block:
if request.method == 'POST' and form.validate():
option = form.radio_button.data
print(option)
Nothing gets printed.
python-3.x flask-wtforms
add a comment |
I'm working on a quiz app and I got stuck on getting the answer from the form where i have a RadioButton.
Relevant code:
This is my html form:
{% for answer in answers %}
<form method="POST" action="">
<div class="btn-group-lg" data-toggle="buttons">
<label class="btn btn-outline-info">
<input type="radio" name="options" id="option" class="btn btn-primary" value="Submit" required> {{answer.answer}}
</label>
</div>
</form>
{% endfor %}
Here I have the .py code where i make a form for my RadioButton, where I make my root and i have my functions:
class QuestionForm(Form):
radio_button = RadioField('option', choices=)
question_list =
answer_list =
@app.route('/question/<int:index>/', methods=['GET','POST'])
def question(index):
questions = getQuestions()
for question in questions:
question_list.append(question['question_id'])
answers = getQuestionAnswers(question_list[index])
questions_lenght = len(questions)
form = QuestionForm()
if request.method == 'POST' and form.validate():
option = form.radio_button.data
print(option)
return render_template('question.html', question=questions[index]["question"], answers=answers, index=index, questions_lenght=questions_lenght, form=form)
return render_template('question.html', question=questions[index]["question"], answers=answers, index=index, questions_lenght=questions_lenght, form=form)
def getQuestions():
mysql = MySQLdb.connect(host="localhost",
user="",
passwd="",
db="",
cursorclass=MySQLdb.cursors.DictCursor)
cur = mysql.cursor()
cur.execute("SELECT * FROM questions")
questions = cur.fetchall()
cur.close()
return questions
def getQuestionAnswers( question_id ):
mysql = MySQLdb.connect(host="localhost",
user="",
passwd="",
db="",
cursorclass=MySQLdb.cursors.DictCursor)
cur = mysql.cursor()
cur.execute("SELECT * FROM answers WHERE question_id = %s", [question_id])
answers = cur.fetchall()
cur.close()
return answers
if __name__ == '__main__':
app.secret_key=''
app.run(debug=True)
My problem is in the following code block:
if request.method == 'POST' and form.validate():
option = form.radio_button.data
print(option)
Nothing gets printed.
python-3.x flask-wtforms
Is your code indentation correct?
– Loss of human identity
Jan 2 at 12:41
In your HTML I would have expected to see something like this example from the WTForms docs:{% for subfield in form.radio %} <tr> <td>{{ subfield }}</td> <td>{{ subfield.label }}</td> </tr> {% endfor %}
– Hugo
Jan 2 at 13:01
you are probably right, but i don't know how to display the answers then
– Code_Noob
Jan 2 at 14:37
add a comment |
I'm working on a quiz app and I got stuck on getting the answer from the form where i have a RadioButton.
Relevant code:
This is my html form:
{% for answer in answers %}
<form method="POST" action="">
<div class="btn-group-lg" data-toggle="buttons">
<label class="btn btn-outline-info">
<input type="radio" name="options" id="option" class="btn btn-primary" value="Submit" required> {{answer.answer}}
</label>
</div>
</form>
{% endfor %}
Here I have the .py code where i make a form for my RadioButton, where I make my root and i have my functions:
class QuestionForm(Form):
radio_button = RadioField('option', choices=)
question_list =
answer_list =
@app.route('/question/<int:index>/', methods=['GET','POST'])
def question(index):
questions = getQuestions()
for question in questions:
question_list.append(question['question_id'])
answers = getQuestionAnswers(question_list[index])
questions_lenght = len(questions)
form = QuestionForm()
if request.method == 'POST' and form.validate():
option = form.radio_button.data
print(option)
return render_template('question.html', question=questions[index]["question"], answers=answers, index=index, questions_lenght=questions_lenght, form=form)
return render_template('question.html', question=questions[index]["question"], answers=answers, index=index, questions_lenght=questions_lenght, form=form)
def getQuestions():
mysql = MySQLdb.connect(host="localhost",
user="",
passwd="",
db="",
cursorclass=MySQLdb.cursors.DictCursor)
cur = mysql.cursor()
cur.execute("SELECT * FROM questions")
questions = cur.fetchall()
cur.close()
return questions
def getQuestionAnswers( question_id ):
mysql = MySQLdb.connect(host="localhost",
user="",
passwd="",
db="",
cursorclass=MySQLdb.cursors.DictCursor)
cur = mysql.cursor()
cur.execute("SELECT * FROM answers WHERE question_id = %s", [question_id])
answers = cur.fetchall()
cur.close()
return answers
if __name__ == '__main__':
app.secret_key=''
app.run(debug=True)
My problem is in the following code block:
if request.method == 'POST' and form.validate():
option = form.radio_button.data
print(option)
Nothing gets printed.
python-3.x flask-wtforms
I'm working on a quiz app and I got stuck on getting the answer from the form where i have a RadioButton.
Relevant code:
This is my html form:
{% for answer in answers %}
<form method="POST" action="">
<div class="btn-group-lg" data-toggle="buttons">
<label class="btn btn-outline-info">
<input type="radio" name="options" id="option" class="btn btn-primary" value="Submit" required> {{answer.answer}}
</label>
</div>
</form>
{% endfor %}
Here I have the .py code where i make a form for my RadioButton, where I make my root and i have my functions:
class QuestionForm(Form):
radio_button = RadioField('option', choices=)
question_list =
answer_list =
@app.route('/question/<int:index>/', methods=['GET','POST'])
def question(index):
questions = getQuestions()
for question in questions:
question_list.append(question['question_id'])
answers = getQuestionAnswers(question_list[index])
questions_lenght = len(questions)
form = QuestionForm()
if request.method == 'POST' and form.validate():
option = form.radio_button.data
print(option)
return render_template('question.html', question=questions[index]["question"], answers=answers, index=index, questions_lenght=questions_lenght, form=form)
return render_template('question.html', question=questions[index]["question"], answers=answers, index=index, questions_lenght=questions_lenght, form=form)
def getQuestions():
mysql = MySQLdb.connect(host="localhost",
user="",
passwd="",
db="",
cursorclass=MySQLdb.cursors.DictCursor)
cur = mysql.cursor()
cur.execute("SELECT * FROM questions")
questions = cur.fetchall()
cur.close()
return questions
def getQuestionAnswers( question_id ):
mysql = MySQLdb.connect(host="localhost",
user="",
passwd="",
db="",
cursorclass=MySQLdb.cursors.DictCursor)
cur = mysql.cursor()
cur.execute("SELECT * FROM answers WHERE question_id = %s", [question_id])
answers = cur.fetchall()
cur.close()
return answers
if __name__ == '__main__':
app.secret_key=''
app.run(debug=True)
My problem is in the following code block:
if request.method == 'POST' and form.validate():
option = form.radio_button.data
print(option)
Nothing gets printed.
python-3.x flask-wtforms
python-3.x flask-wtforms
edited Jan 2 at 12:55


Loss of human identity
1,21011027
1,21011027
asked Jan 2 at 12:19
Code_NoobCode_Noob
3216
3216
Is your code indentation correct?
– Loss of human identity
Jan 2 at 12:41
In your HTML I would have expected to see something like this example from the WTForms docs:{% for subfield in form.radio %} <tr> <td>{{ subfield }}</td> <td>{{ subfield.label }}</td> </tr> {% endfor %}
– Hugo
Jan 2 at 13:01
you are probably right, but i don't know how to display the answers then
– Code_Noob
Jan 2 at 14:37
add a comment |
Is your code indentation correct?
– Loss of human identity
Jan 2 at 12:41
In your HTML I would have expected to see something like this example from the WTForms docs:{% for subfield in form.radio %} <tr> <td>{{ subfield }}</td> <td>{{ subfield.label }}</td> </tr> {% endfor %}
– Hugo
Jan 2 at 13:01
you are probably right, but i don't know how to display the answers then
– Code_Noob
Jan 2 at 14:37
Is your code indentation correct?
– Loss of human identity
Jan 2 at 12:41
Is your code indentation correct?
– Loss of human identity
Jan 2 at 12:41
In your HTML I would have expected to see something like this example from the WTForms docs:
{% for subfield in form.radio %} <tr> <td>{{ subfield }}</td> <td>{{ subfield.label }}</td> </tr> {% endfor %}
– Hugo
Jan 2 at 13:01
In your HTML I would have expected to see something like this example from the WTForms docs:
{% for subfield in form.radio %} <tr> <td>{{ subfield }}</td> <td>{{ subfield.label }}</td> </tr> {% endfor %}
– Hugo
Jan 2 at 13:01
you are probably right, but i don't know how to display the answers then
– Code_Noob
Jan 2 at 14:37
you are probably right, but i don't know how to display the answers then
– Code_Noob
Jan 2 at 14:37
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54006263%2fget-value-from-dynamic-radiofield-in-flask%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54006263%2fget-value-from-dynamic-radiofield-in-flask%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Is your code indentation correct?
– Loss of human identity
Jan 2 at 12:41
In your HTML I would have expected to see something like this example from the WTForms docs:
{% for subfield in form.radio %} <tr> <td>{{ subfield }}</td> <td>{{ subfield.label }}</td> </tr> {% endfor %}
– Hugo
Jan 2 at 13:01
you are probably right, but i don't know how to display the answers then
– Code_Noob
Jan 2 at 14:37