Я пытаюсь загрузить данные из формы в мою Postgres БД.
, но не вижу своей ошибки ...
Вот код ... надеюсь, вы сможете помощь - большое спасибо
импорт библиотек
app = Flask ( name )
app.debug = True
app.config ["SQLALCHEMY_TRACK_MODIFICATIONS"] = Ложь
app.config ['SQLALCHEMY_DATABASE_URI'] = 'postgresql: // postgres: ****** @ localhost / [DBName] '
db = SQLAlchemy (приложение)
класс Пользователь (db.Model):
__tablename__ = 'ratco'
id = db.Column(db.Integer, primary_key=True)
customee = db.Column(db.String(200),unique=False)
comments = db.Column(db.String(200),unique = False)
def __init__(self,customee,comments):
self.customee = customee
self.comments = comments
@app.route (' / home ')
def index ():
return render_template('home.html')
@app.route ('/ insert_user', method = ['POST'])
def insertUser ():
customee = request.form['customee']
comments = request.form['comments']
user = User(customee,comments)
db.session.add(user)
db.session.commit()
если имя == " main ":
app.run(debug=True)
hTML PART
<label>Customee:</label>
<input id ="customee" name = "customee" type="text" />
<label>Comments:</label>
<input id ="comments" name = "comments" type="text" />
<input type="submit" />
</form