以下代码片段(如下)导致异常(见下文),有人可以解释原因吗?
theUser = User.objects.get(id=user.id)
profile = User.objects.create(user=theUser)
如果我将 profile = line 更改为
profile = User.Objects.create(username, password, email)
然后我得到一个异常,指出“创建”恰好需要 1 个参数但收到 4 个?如果不是用户对象,发送此函数的正确参数是什么?