我有一段简单的代码:
ParseObject testobject = new ParseObject("Test");
testobject.put("customerName", "John");
testobject.saveInBackground();
如果我在我的模拟器上运行它,它可以工作,在我的 Parse 项目中创建一个测试类,并将值 John 添加到 Row 客户名中。
如果我在手机上运行它,结果也是成功的。
但是,如果我在平板电脑上运行完全相同的程序,则什么也不会发生。
(回调 = null,.getResult() 和 .getError() 也是 null)
知道问题出在哪里吗?