How create an array with checkboxes in Flask
I'm starting in flask, so i have many questions about it. And one of them is how to create an array based on name of the checkbox input?
In other words, python will follow the logic: for each of type "checkbox", which ones were filled?
I have those codes:
index.html
{% block content %}
<form method="POST" action="">
<div class="card" style="margin:50px 0">
<div class="card-header"><b>Letters</b></div>
<ul class="list-group list-group-flush">
<li class="list-group-item">A
<label class="switch ">
<input type="checkbox" name="A" class="danger">
<span class="slider round"></span>
</label>
</li>
<li class="list-group-item">B
<label class="switch ">
<input type="checkbox" name="B" class="danger">
<span class="slider round"></span>
</label>
</li>
<li class="list-group-item">C
<label class="switch ">
<input type="checkbox" name="C" class="danger">
<span class="slider round"></span>
</label>
</li>
</ul>
<button type="submit">Go</button>
</div>
</form>
{% endblock content %}
And funcs.py
from flask import Flask, render_template, url_for, redirect, request
app = Flask(__name__)
app.config['SECRET_KEY'] = '0000'
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)
When the user has checked boxes named "A" and "C", python creates an array and display the array shortly afterwards when the user submit.
checked = ["A", "C"]
python flask
add a comment |
I'm starting in flask, so i have many questions about it. And one of them is how to create an array based on name of the checkbox input?
In other words, python will follow the logic: for each of type "checkbox", which ones were filled?
I have those codes:
index.html
{% block content %}
<form method="POST" action="">
<div class="card" style="margin:50px 0">
<div class="card-header"><b>Letters</b></div>
<ul class="list-group list-group-flush">
<li class="list-group-item">A
<label class="switch ">
<input type="checkbox" name="A" class="danger">
<span class="slider round"></span>
</label>
</li>
<li class="list-group-item">B
<label class="switch ">
<input type="checkbox" name="B" class="danger">
<span class="slider round"></span>
</label>
</li>
<li class="list-group-item">C
<label class="switch ">
<input type="checkbox" name="C" class="danger">
<span class="slider round"></span>
</label>
</li>
</ul>
<button type="submit">Go</button>
</div>
</form>
{% endblock content %}
And funcs.py
from flask import Flask, render_template, url_for, redirect, request
app = Flask(__name__)
app.config['SECRET_KEY'] = '0000'
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)
When the user has checked boxes named "A" and "C", python creates an array and display the array shortly afterwards when the user submit.
checked = ["A", "C"]
python flask
add a comment |
I'm starting in flask, so i have many questions about it. And one of them is how to create an array based on name of the checkbox input?
In other words, python will follow the logic: for each of type "checkbox", which ones were filled?
I have those codes:
index.html
{% block content %}
<form method="POST" action="">
<div class="card" style="margin:50px 0">
<div class="card-header"><b>Letters</b></div>
<ul class="list-group list-group-flush">
<li class="list-group-item">A
<label class="switch ">
<input type="checkbox" name="A" class="danger">
<span class="slider round"></span>
</label>
</li>
<li class="list-group-item">B
<label class="switch ">
<input type="checkbox" name="B" class="danger">
<span class="slider round"></span>
</label>
</li>
<li class="list-group-item">C
<label class="switch ">
<input type="checkbox" name="C" class="danger">
<span class="slider round"></span>
</label>
</li>
</ul>
<button type="submit">Go</button>
</div>
</form>
{% endblock content %}
And funcs.py
from flask import Flask, render_template, url_for, redirect, request
app = Flask(__name__)
app.config['SECRET_KEY'] = '0000'
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)
When the user has checked boxes named "A" and "C", python creates an array and display the array shortly afterwards when the user submit.
checked = ["A", "C"]
python flask
I'm starting in flask, so i have many questions about it. And one of them is how to create an array based on name of the checkbox input?
In other words, python will follow the logic: for each of type "checkbox", which ones were filled?
I have those codes:
index.html
{% block content %}
<form method="POST" action="">
<div class="card" style="margin:50px 0">
<div class="card-header"><b>Letters</b></div>
<ul class="list-group list-group-flush">
<li class="list-group-item">A
<label class="switch ">
<input type="checkbox" name="A" class="danger">
<span class="slider round"></span>
</label>
</li>
<li class="list-group-item">B
<label class="switch ">
<input type="checkbox" name="B" class="danger">
<span class="slider round"></span>
</label>
</li>
<li class="list-group-item">C
<label class="switch ">
<input type="checkbox" name="C" class="danger">
<span class="slider round"></span>
</label>
</li>
</ul>
<button type="submit">Go</button>
</div>
</form>
{% endblock content %}
And funcs.py
from flask import Flask, render_template, url_for, redirect, request
app = Flask(__name__)
app.config['SECRET_KEY'] = '0000'
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)
When the user has checked boxes named "A" and "C", python creates an array and display the array shortly afterwards when the user submit.
checked = ["A", "C"]
python flask
python flask
asked Nov 16 '18 at 20:16
w4g
224
224
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Your HTML is heading in the right direction, but a few minor changes for Flask to handle this effectively.
First, set the current value of the name
attribute to the value
attribute. This will determine values Flask pulls during the form post. Secondly, set the name
attribute to have a common value.
<input type="checkbox" value="A" class="danger" name='my_checkbox'>
<input type="checkbox" value="B" class="danger" name='my_checkbox'>
<input type="checkbox" value="C" class="danger" name='my_checkbox'>
After the HTML is configured as such, you can use the getlist
method from Flask's request module.
print(request.form.getlist('my_checkbox'))
>>> ['A', 'C']
add a comment |
When a POST request is sent to the flask server you can get form contents from request.form
. which is a dictionary based off of the POST request.
With check boxes, if the box is ticked the input name
in <input type="checkbox" name="A" class="danger">
would be in this dictionary. Therefore you can check for the check box like so:
if "A" in request.form:
checked.append("A") # You can of course append any arbitrary value
add a comment |
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%2f53344797%2fhow-create-an-array-with-checkboxes-in-flask%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your HTML is heading in the right direction, but a few minor changes for Flask to handle this effectively.
First, set the current value of the name
attribute to the value
attribute. This will determine values Flask pulls during the form post. Secondly, set the name
attribute to have a common value.
<input type="checkbox" value="A" class="danger" name='my_checkbox'>
<input type="checkbox" value="B" class="danger" name='my_checkbox'>
<input type="checkbox" value="C" class="danger" name='my_checkbox'>
After the HTML is configured as such, you can use the getlist
method from Flask's request module.
print(request.form.getlist('my_checkbox'))
>>> ['A', 'C']
add a comment |
Your HTML is heading in the right direction, but a few minor changes for Flask to handle this effectively.
First, set the current value of the name
attribute to the value
attribute. This will determine values Flask pulls during the form post. Secondly, set the name
attribute to have a common value.
<input type="checkbox" value="A" class="danger" name='my_checkbox'>
<input type="checkbox" value="B" class="danger" name='my_checkbox'>
<input type="checkbox" value="C" class="danger" name='my_checkbox'>
After the HTML is configured as such, you can use the getlist
method from Flask's request module.
print(request.form.getlist('my_checkbox'))
>>> ['A', 'C']
add a comment |
Your HTML is heading in the right direction, but a few minor changes for Flask to handle this effectively.
First, set the current value of the name
attribute to the value
attribute. This will determine values Flask pulls during the form post. Secondly, set the name
attribute to have a common value.
<input type="checkbox" value="A" class="danger" name='my_checkbox'>
<input type="checkbox" value="B" class="danger" name='my_checkbox'>
<input type="checkbox" value="C" class="danger" name='my_checkbox'>
After the HTML is configured as such, you can use the getlist
method from Flask's request module.
print(request.form.getlist('my_checkbox'))
>>> ['A', 'C']
Your HTML is heading in the right direction, but a few minor changes for Flask to handle this effectively.
First, set the current value of the name
attribute to the value
attribute. This will determine values Flask pulls during the form post. Secondly, set the name
attribute to have a common value.
<input type="checkbox" value="A" class="danger" name='my_checkbox'>
<input type="checkbox" value="B" class="danger" name='my_checkbox'>
<input type="checkbox" value="C" class="danger" name='my_checkbox'>
After the HTML is configured as such, you can use the getlist
method from Flask's request module.
print(request.form.getlist('my_checkbox'))
>>> ['A', 'C']
answered Nov 16 '18 at 20:37
Wondercricket
3,89612136
3,89612136
add a comment |
add a comment |
When a POST request is sent to the flask server you can get form contents from request.form
. which is a dictionary based off of the POST request.
With check boxes, if the box is ticked the input name
in <input type="checkbox" name="A" class="danger">
would be in this dictionary. Therefore you can check for the check box like so:
if "A" in request.form:
checked.append("A") # You can of course append any arbitrary value
add a comment |
When a POST request is sent to the flask server you can get form contents from request.form
. which is a dictionary based off of the POST request.
With check boxes, if the box is ticked the input name
in <input type="checkbox" name="A" class="danger">
would be in this dictionary. Therefore you can check for the check box like so:
if "A" in request.form:
checked.append("A") # You can of course append any arbitrary value
add a comment |
When a POST request is sent to the flask server you can get form contents from request.form
. which is a dictionary based off of the POST request.
With check boxes, if the box is ticked the input name
in <input type="checkbox" name="A" class="danger">
would be in this dictionary. Therefore you can check for the check box like so:
if "A" in request.form:
checked.append("A") # You can of course append any arbitrary value
When a POST request is sent to the flask server you can get form contents from request.form
. which is a dictionary based off of the POST request.
With check boxes, if the box is ticked the input name
in <input type="checkbox" name="A" class="danger">
would be in this dictionary. Therefore you can check for the check box like so:
if "A" in request.form:
checked.append("A") # You can of course append any arbitrary value
answered Nov 16 '18 at 20:39
Moralous
71111
71111
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53344797%2fhow-create-an-array-with-checkboxes-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