我正在尝试下载已上传到Parse核心的文件。 (我使用的是Parse Unity SDK)
我有一个Parse表调用" DLC"存储所有可下载的文件。 但现在我不知道如何从应用程序本身下载它。
这些是我的代码,我被困了
void GetParseFiles()
{
ParseQuery<ParseObject> query = ParseObject.GetQuery("DLC");
query.FindAsync().ContinueWith(t =>
{
if (t.IsCompleted)
{
IEnumerable<ParseObject> results = t.Result;
int count = 0;
foreach(ParseObject obj in results)
{
ParseFile parseFile = obj.Get<ParseFile>("LevelFiles");
WWW request = new WWW(parseFile.Url.AbsoluteUri);
// what should I do in order to get the content of the file?
}
Debug.Log(count);
}
else
{
Debug.Log("Failed");
}
});
}
希望有人可以告诉我该怎么做? 我想要实现的是我想将一些数据文件(以.txt或.xml格式)存储到Parse服务器,然后其他用户将从那里获取数据文件。
答案 0 :(得分:0)
我在这里找到了答案..
如果我需要在函数块中放置一个yield语句,我不应该使用ContinueWith。