gpt4 book ai didi

javascript - 新对象未出现在解析数据浏览器中

转载 作者:行者123 更新时间:2023-11-28 08:18:50 33 4
gpt4 key购买 nike

我希望当用户在我的 iOS 应用程序中注册时创建一个新的 userCategory 对象。我认为最好的方法是在注册成功后调用 Parse 云代码函数来触发对象的创建。然而,当我检查 Parse 的数据浏览器时,会创建新用户,但不会创建与该用户关联的新 userCategory

objective-c 代码:

// Sent to the delegate when a PFUser is signed up.
- (void)signUpViewController:(PFSignUpViewController *)signUpController didSignUpUser:(PFUser *)user {
[self dismissViewControllerAnimated:YES completion:NULL];

[PFCloud callFunctionInBackground:@"userCategoryCreate"
withParameters:@{}
block:^(NSNumber *ratings, NSError *error) {
if (!error) {
//userCategory created
}
}];
}

云代码:

Parse.Cloud.define("userCategoryCreate", function(request, response) {


// Simple syntax to create a new subclass of Parse.Object.
var UserCategory = Parse.Object.extend("UserCategory");

// Create a new instance of that class.
var userCategory = new UserCategory();


response.success("userCategory succesfully created!");
});

最佳答案

你应该做类似的事情:

// Simple syntax to create a new subclass of Parse.Object.
var UserCategory = Parse.Object.extend("UserCategory");

// Create a new instance of that class.
var userCategory = new UserCategory();

// set necessary fields for the new entry row ( if needed )
userCategory.set("categoryName","categoryFoo1");
...
..
.

// Then save the object

userCategory.save().then(function(savedObj){

response.success("userCategory succesfully created!");

},function(saveError){

response.error("Unable to create this object");

});

希望对你有帮助

关于javascript - 新对象未出现在解析数据浏览器中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23254568/

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