response["message"]:
Answer_to_system.bad_response(chatId, "audio", response)
То есть как определить наличие ключа и присвоить в переменную?
match response["message"]: case {"voice": value}: answer_to_system.bad_response(chatId, "audio", response) что-то такое, но зачем?
Ну а как тогда лучше переписать это? if request.method == "POST": response = request.get_json() chatId = response['message']['chat']['id'] if "text" in response["message"] or "photo" in response["message"] or "document" in response[ "message"]: Answer_to_system.bad_response(chatId, "text", response) elif "voice" in response["message"]: Answer_to_system.bad_response(chatId, "audio", response) elif "contact" in response["message"]: Answer_to_system.bad_response(chatId, "text", response)
Вопрос не технической реализации, а правильное использование ООП и читаемость
match case это не про ООП
Но оно делает все же код лаконичнее
проверку request.method вынести в правила роутинга
А что тут не так? @app.route('/', methods=["POST", "GET"]) def index(): if request.method == "POST":
@app.route('/', methods=["GET"]) def index(): ... @app.route('/', methods=["POST"]) def new_one(): ...
А если что то такое? @app.route('/edit_profile', methods=['GET', 'POST']) @login_required def edit_profile(): form = EditProfileForm(current_user.username) if form.validate_on_submit(): current_user.username = form.username.data current_user.about_me = form.about_me.data db.session.commit() flash(_('Your changes have been saved.')) return redirect(url_for('edit_profile')) elif request.method == 'GET': form.username.data = current_user.username form.about_me.data = current_user.about_me return render_template('edit_profile.html', title=_('Edit Profile'), form=form) (из мегаучебника по фласку)
Вот это validate on submit меня бесит, да
Это было одной из причин, почему я стал использовать flask лишь как API, а на фронте что-то другое. И так наверное даже правильнее будет
Скинь мне этот мегаучебник, пж
https://habr.com/ru/post/346306/ Но про то что ты спрашивал, нет информации
А,видел это.Подумал,мб правда какой-то подробный толмут будет хеххе
Подробнее вряд ли есть, хз
Но принцип использования g я видел, для сессии & sqlaclhemy
Обсуждают сегодня