NSString *userStr = [bodyJson valueForKeyNullReplace:@"user"];
NSDictionary *userJson;
NSString *userJsonStr = [userStr JSONString];
userJson= [userJsonStr objectFromJSONString];
if (!userJson) {
userJson = [userStr JSONValue];
}
2022-06-03 20:48:03
NSString *userStr = [bodyJson valueForKeyNullReplace:@"user"];
NSDictionary *userJson;
NSString *userJsonStr = [userStr JSONString];
userJson= [userJsonStr objectFromJSONString];
if (!userJson) {
userJson = [userStr JSONValue];
}