gpt4 book ai didi

ios - 解析更新 PFUser 类字符串

转载 作者:行者123 更新时间:2023-11-29 02:15:41 25 4
gpt4 key购买 nike

我正在尝试在解析中更新我的用户类中的特定用户“totalScore”列。 “totalScore”是一个字符串值。我在 didSelectRowAtIndexPath: 中运行下面的代码。我正在从查询的用户列表中获取 self.friends 我想在我的 tableview 中显示。当我运行这段代码并记录它时,它似乎工作正常,但该对象从未在我的数据浏览器中更新。另外:我可以在线更新这个对象,而不是在应用程序中!谢谢!

 PFUser *user = [self.friends objectAtIndex:indexPath.row];

PFQuery *query = [PFQuery queryWithClassName:@"_User"];
[query whereKey:@"objectId" equalTo:user.objectId];
[query getFirstObjectInBackgroundWithBlock:^(PFObject * userStats, NSError *error) {
if (!error) {

[userStats setObject:@"#5" forKey:@"totalScore"];

[userStats saveInBackground];


} else {
// Did not find any UserStats for the current user
NSLog(@"Error: %@", error);
}
}];

最佳答案

出于安全原因,您无法更新任何不属于您的用户信息。您必须是当前用户才能更改您的信息。

这是使用云代码的解决方法: https://parse.com/questions/users-editing-other-users-in-javascript-sdk

关于ios - 解析更新 PFUser 类字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28775325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com