It’s an error I’ve been stuck on for a while.
JavaScript
x
2
1
var longitude = 20
2
How would I pass this to python with Flask without using any complicated GET/POST requests? My end goal is to print the statement in the python console.
JavaScript
1
2
1
print(getfromjavascript(longitude))
2
Pseudocode
Advertisement
Answer
Ok, there is a lot to learn, but an example made everything better to understand:
app.py
JavaScript
1
13
13
1
from flask import Flask, request, render_template
2
3
app = Flask(__name__)
4
5
@app.route('/', methods=['GET', 'POST'])
6
def index():
7
if request.method == 'POST':
8
print(request.form.get('longitude'))
9
return render_template('index.html')
10
11
if __name__ == '__main__':
12
app.run()
13
templates/index.html
JavaScript
1
15
15
1
<form method="POST" action="">
2
<input type="text" name="longitude" />
3
<input type="submit" value="Submit" />
4
</form>
5
<script>
6
var longitude = 20;
7
var request = new XMLHttpRequest();
8
request.open('POST', '/', true);
9
request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
10
request.onreadystatechange = function() {
11
// do something
12
};
13
request.send('longitude=' + longitude);
14
</script>
15
This simple code will print the longitute value when you click in the button only on console, but also triggers a post request from Javascript that will do the same automatically every time you access the page.