我试图弄清楚如何从解析到我的Unity应用程序中检索updatedAt并将其转换为字符串。这是我尝试过的:
ParseQuery<ParseObject> query = ParseObject.GetQuery("TurnTime");
query.GetAsync("StSHxHCczO").ContinueWith(t =>
{
ParseObject theTurnTimer = t.Result;
DateTime? updatedAt1 = theTurnTimer.UpdatedAt;
string testTime1 = updatedAt1.ToString("yyyyMMddHHmmss");
Debug.Log("Test1: "+testTime1);
DateTime updatedAt1 = theTurnTimer.Get<DateTime>("createdAt");
string testTime2 = updatedAt1.ToString("yyyyMMddHHmmss");
Debug.Log("Test2: "+testTime2);
});
我知道我有对象,但我的debug.logs中没有任何东西?我在这里缺少什么吗?
任何帮助都表示赞赏,并提前感谢: - )
#######编辑在进一步调查后,我要补充一下:
我无法转换DateTime?像第一个例子中的字符串:
DateTime? updatedAt1 = theTurnTimer.UpdatedAt;
string testTime1 = updatedAt1.ToString("yyyyMMddHHmmss");
在第二部分中,我没有进入Debug.Log:
DateTime updatedAt1 = theTurnTimer.Get<DateTime>("createdAt");
string testTime2 = updatedAt1.ToString("yyyyMMddHHmmss");
Debug.Log("Test2: "+testTime2);
所以我仍然没有找到解决方案,任何帮助仍然受到赞赏。