Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Shan Healy
84 Pointsdata not defined?
Hello , I am doing the Cookies Flask Basics Challenge and its telling me when i try to go online that data is not defined but i cant seem to find it in my code! Can anyone help?
import json
from flask import (Flask,render_template, redirect, url_for, request, make_response)
app = Flask(__name__)
def get_saved_data():
try:
data = json.loads(request.cookies.get('character'))
except TypeError:
data = {}
return data
@app.route('/')
def index():
return render_template('index.html', saves=data)
@app.route('/save', methods=['POST'])
def save():
response = make_response(redirect(url_for('index')))
data = get_saved_data()
data.update(dict(request.form.items()))
response.set_cookie('character', json.dumps(data))
return response
app.run(debug=True, host='0.0.0.0', port=8000)
1 Answer
Andreas cormack
Python Web Development Techdegree Graduate 33,011 PointsHi Shan
First thing when you post any code try and use the markdown sheet it helps others to read your code more easily.look at my comment in the view index.
import json
from flask import (Flask,render_template, redirect, url_for, request, make_response)
app = Flask(name)
def get_saved_data():
try:
data = json.loads(request.cookies.get('character'))
except:
TypeError: data = {}
return data
@app.route('/')
def index():
data = get_saved_data() # call the function and assign it to data
return render_template('index.html', saves=data)
@app.route('/save', methods=['POST'])
def save():
response = make_response(redirect(url_for('index'))) data = get_saved_data() data.update(dict(request.form.items())) response.set_cookie('character', json.dumps(data)) return response
app.run(debug=True, host='0.0.0.0', port=8000)
Shan Healy
84 PointsOk sorry!
Andreas cormack
Python Web Development Techdegree Graduate 33,011 Pointsno probs all part of learning. I use to do the same thing
Vittorio Somaschini
33,371 PointsVittorio Somaschini
33,371 PointsHi Shan.
I have edited your question for better readability.
;)