Strongloop iOS LBUser Extension Error 422 in Post
问题 I'm trying to create and save a user extension of LBUser to the server with this code: LBRESTAdapter *adapter = ((AppDelegate *)[[UIApplication sharedApplication] delegate]).adapter; if (adapter) { TeacherRepository *repo = (TeacherRepository *)[adapter repositoryWithClass:[TeacherRepository class]]; if (repo) { Teacher *st = (Teacher *)[repo createUserWithEmail:@"test@test.com" password:@"test"]; st.bigarea = @"Mathematics"; NSLog(@"Email: %@", st.email); NSLog(@"Password: %@", st.password);