fetch('https://jsonplaceholder.typicode.com/users')
.then(res => res.json())
.then(res => res.map(user => user.username))
.then(userNames => console.log(userNames));
user = db.session.query(Users).filter(Users.username == form.username.data).first()
print('user_id', user.id)
from flask import send_file
@app.route('/text', methods=['POST'])
def caption():
return send_file('file.txt' , as_attachment=True)
Но как победить проблему из сабжа, я знаю. Я писал об этом в своей статье:
https://habr.com/ru/post/426269/