gpt4 book ai didi

xcode - 解析|云码当前用户

转载 作者:行者123 更新时间:2023-11-30 10:19:55 24 4
gpt4 key购买 nike

我尝试使用云代码获取当前用户。

var verificationCode = (Math.floor(Math.random()*900000)) + 100000 ;
var user = Parse.User.current();
user.set("phoneVerificationCode", verificationCode);
user.save();

当我在 Xcode 中调用该方法时。

PFCloud.callFunctionInBackground("sendVerificationCode", withParameters:["phoneNumber": phoneNumberText])

它发送但我收到此错误:

Error: TypeError: Cannot call method 'set' of null

我该怎么办?

最佳答案

当前用户可用(如果已登录)。用户通过请求对象传递到您的云函数。

Parse.Cloud.define("myFunction", function(request, response) {
var verificationCode = (Math.floor(Math.random()*900000)) + 100000 ;
var user = request.user();
user.set("phoneVerificationCode", verificationCode);
user.save();
});

关于xcode - 解析|云码当前用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27456403/

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