• Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Python Python Web Programming Flask website cookies issue

Velpus Captiosus

Well-Known Coder
I have this function in Flask:

Python:
@app.route('/<usrname>?<app>',methods=['POST','GET'])

def mainW(usrname:str,app:str):

    if request.method=='POST':

        action = request.form.get('action')

        if action == 'email':

            return redirect(url_for('mainW',usrname=usrname,app='email'))

        else:

            return '1'

    else:

        return render_template('main.html')

however after the email action takes place obviously the usrname value is lost. How can I store the value of usrname?
 
I have this function in Flask:

Python:
@app.route('/<usrname>?<app>',methods=['POST','GET'])

def mainW(usrname:str,app:str):

    if request.method=='POST':

        action = request.form.get('action')

        if action == 'email':

            return redirect(url_for('mainW',usrname=usrname,app='email'))

        else:

            return '1'

    else:

        return render_template('main.html')

however after the email action takes place obviously the usrname value is lost. How can I store the value of usrname?

Cookies are a crucial component of web development, enabling websites to store information about users' preferences and activities. In Python web programming, Flask provides a straightforward mechanism for handling cookies, allowing developers to seamlessly manage user sessions and enhance the user experience.
 

New Threads

Latest posts

Buy us a coffee!

300x250
Top Bottom