新的ParseObject("消息")崩溃应用程序

时间:2015-03-19 20:15:57

标签: android parse-platform

我正在尝试像这样创建一个新的ParseObject:

ParseObject message = new ParseObject("Message");

当我运行应用程序时,它会给我以下错误:

java.lang.IllegalArgumentException: You must create this type of ParseObject using ParseObject.create() or the proper subclass.

这是我的完整代码

ParseObject message = new ParseObject("Message");
message.put("content", "words go here");
message.saveInBackground();

如果需要,可以发布更多代码。感谢所有帮助!

3 个答案:

答案 0 :(得分:3)

从此示例中:https://parse.com/docs/android_guide#objects

您可以像这样创建对象:

ParseObject gameScore = new ParseObject("GameScore");
gameScore.put("score", 1337);
gameScore.put("playerName", "Sean Plott");
gameScore.put("cheatMode", false);
gameScore.saveInBackground();

实际上类似的代码现在在我的应用程序中有效。

如果您创建了一个扩展ParseObject的Message模型,您可能需要调用新的Message(),如下所示:

https://www.parse.com/questions/new-parseobjectchat-crushes-the-app

这个答案建议使用.create()可以解决问题,但不能解释原因。

App crash when I submit a new post to Parse

另外,请确保使用正确的密钥正确初始化您的应用,并使用最新版本的SDK。

答案 1 :(得分:0)

确保已在Application类中初始化Parse。

p0

答案 2 :(得分:0)

如果你有一个子类,例如:

@ParseClassName("Rating")
public class ParseRating extends ParseObject{

输入new ParseObject("Rating")

会出现此错误

解决方案是创建new ParseRating()