继续这个问题,您能否举一个有效输入 json 的示例以同时创建新的用户和用户配置文件?
虽然这成功地在用户端点上创建了一个新用户:
{
"username": "newuser",
"password": "abc"
}
但这在UserProfile端点上失败了:
{
"user":{
"username": "newuser2",
"password": "abc"
}
"biography": "1",
}
返回:
{
"user": [
"This field cannot be null."
]
}