使用网络从xhr返回responseText作为字符串

时间:2018-12-28 04:43:55

标签: typescript xmlhttprequest

我正在使用xhr和net来调用Kegg API。我可以控制台响应,而responseText正是我想要的-但是,当我尝试返回文本时,将文本分配为全局变量,或者在我从函数返回响应后将其指定为想要的文本,返回的结果不确定。我的代码在下面,在正确方向上的任何帮助将不胜感激!

    foreach (string i in database)
        {
            // compares query (from index 0 to length of) to all strings in database

            if (i.StartsWith(query))
            {
                // add to list above based on query
                dbQueryList.Add(i);
                Console.WriteLine(i);
            }
            // if statement truncates dbQueryList to 5 results
            if (dbQueryList.Capacity >= 5)
                break;
        }
        return dbQueryList;

0 个答案:

没有答案