如何从Parse下载文件列表

时间:2015-01-12 03:04:59

标签: unity3d parse-platform

我正在尝试下载已上传到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服务器,然后其他用户将从那里获取数据文件。

1 个答案:

答案 0 :(得分:0)

我在这里找到了答案..

如果我需要在函数块中放置一个yield语句,我不应该使用ContinueWith。

https://parse.com/questions/unity-after-i-uploaded-a-jpeg-as-a-parsefile-using-the-data-browser-how-can-i-retrieve-and-display-it-from-unity-with-c-code