将值保存到我的数据库后,我正在渲染一个edit_field html。
表单会自动填充先前的数据。
如何保存原始数据,以便检查哪些字段已更改?
这是我的骨架编辑视图
@app.route('/edit/<name>/<goal>/<strategy>/<task>', methods=['GET', 'POST'])
def edit_task(name,goal,strategy,task):
ptask=models.Tasks.query.filter_by(task=task).first()
form = task_form(obj=ptask)
form.populate_obj(ptask)
tform=task_form(request.values)
if request.method == 'POST' and form.validate_on_submit():
complete=tform.complete.data
#check if complete changed
db.session.commit()
return redirect(url_for('task_outline',name=name,goal=goal,strategy=strategy))
return render_template('edit_task.html', tform=tform,form=form,ptask=ptask)
答案 0 :(得分:2)
这很可能适用于Flask,但我只使用过Pyramid
db.session.is_modified(ptask)
#returns True/False
答案 1 :(得分:0)
正如limasxgoesto0所建议的那样,我使用了get_history,它起作用了。这是我测试,并解决我如何测试布尔值的变化,并为新鲜的True分配一个新的日期。
从我看来:
@app.route('/edit/<name>/<goal>/<strategy>/<task>', methods=['GET', 'POST'])
def edit_task(name,goal,strategy,task):
..... more view missing here.....
ptask=models.Tasks.query.filter_by(task=task)
if request.method == 'POST' and form.validate_on_submit():
print 'now ',get_history(ptask, 'complete')[0]
print 'before ',get_history(ptask, 'complete')[2]
if get_history(ptask, 'complete')[0]==[True] and get_history(ptask, 'complete')[2]==[False]:
print 'changed from false to true'
ptask.completeDate=datetime.datetime.utcnow()
if get_history(ptask, 'complete')[0]==[False] and get_history(ptask, 'complete')[2]==[True]:
print 'changed from true to false'
ptask.completeDate=None
db.session.commit() if request.method == 'POST' and form.validate_on_submit():