Answers for "javascript send to flask function"

2

how to send information from javascript to flask route

#python route
@app.route('/this-route', methods=['GET', 'POST']):
def thisRoute():
    information = request.data
    return "1"

#javascript
const URL = '/get-coordinates'
const xhr = new XMLHttpRequest();
sender = JSON.stringify([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
xhr.open('POST', URL);
xhr.send(sender);
Posted by: Guest on August-30-2020
0

call javascript function flask

from flask import Flask, render_template

app = Flask(__name__)


@app.route('/', methods=['GET', 'POST'])
def upload_file():
    if request.method == 'POST':
        #verify if the file is valid
        #here invoke js to do something (for example flash("test"))
        return render_template('upload.html', flash_message="True")

    return render_template('upload.html', flash_message="False")
Posted by: Guest on April-28-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language