Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的视图代码中,
我使用以下行构建表单:
MyForm(obj=my_obj)
post 方法将使用以下方法重建表单:
UserAccountForm(request.form)
在编写更新表单时,您将如何检查某些表单属性是否已更改?
我本可以将它与数据库值进行比较,但我无法做到这一点。
我想知道的属性发生了变化,它是我的 NoSQL 数据库中所有其他属性的关键。
为此,我在表单中添加了一个签名的隐藏字段,我可以在将表单发布到可见表单中的值时进行比较。