gpt4 book ai didi

android - 如何使用 parse.com android 从不同的表中获取 ObjectId

转载 作者:行者123 更新时间:2023-11-30 02:32:57 26 4
gpt4 key购买 nike

我正在开发 parse.com android 应用程序,我想在其中获取自定义表“UserInfo”的 ObjectId。我使用了以下代码行,但它为我提供了 ObjectId 的 Null 值,并且无法从服务器获取 ObjectId。请告诉我如何获取 ObjectId。

public static ParseObject userINfo = new ParseObject("UserInfo");

String info_ = userINfo.getObjectId();// Null Value

String infow = userINfo.getString("objectId");// Null Value

最佳答案

我刚刚解决了我的问题。它通过使用 CallBackMethod 来工作。代码如下:

public static ParseObject user= new ParseObject("UserInfo");
user.getParseObject("info").fetchIfNeededInBackground(new GetCallback<ParseObject>() {

@Override
public void done(ParseObject object, ParseException e) {
// TODO Auto-generated method stub
ParseObject userinfo = object;
String doctor = userinfo.getString("door");
String allergies = userinfo.getString("algies");
String medicalNote = userinfo.getString("mediote");
String medications = userinfo.getString("medic");
String medicalCondition = userinfo.getString("medicalCondition");

docInfo.setText(doctor);
medication.setText(medications);
medNotes.setText(medicalNote);
medCond.setText(medicalCondition);
alergiesReact.setText(allergies);

Log.i("userinfo", "" + userinfo);
}
});

关于android - 如何使用 parse.com android 从不同的表中获取 ObjectId,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27046723/

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