如下有两个 Model :
class User(Model):
name = xxxx
class UserProfile(Model):
user = OneToOneField(User)
phone = xxxx
需要在一个页面中批量加入用户信息,那么如何处理 Form(FormSet)比较好呢?
1
xiaolajiao 2017-01-03 13:26:31 +08:00
|