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.
我有一个名为 Job 的模型,我想将它保存到我的数据库中。我的模板已将其字段作为 POST 数据传递给我的 View 函数。我想知道如何从这里获取它,创建某种 Job 实例,并将其保存到我的数据库中。提前感谢您的帮助。
你说过:
创建某种 Job 实例,并将其保存到我的数据库中
job = Job(field1=value1, field2=value2) job.save()
另请参阅文档。