0

一个多星期以来,我一直坚持简单的 api 用法。这是详细信息。

尝试对 ebay.com 进行 api 调用。这是我的代码的样子......

这是起始页面代码:

 protected void Button1_Click(object sender, EventArgs e)
    {
        Response.Redirect("Results.aspx?Keywords=" + searchString.Text);  
    }

该页面被定向到这段代码:

if (Request.QueryString["Keywords"] != null){
        string keywords = Request.QueryString["Keywords"];
            string myAppID = "HIDDEN";
            var xml = XDocument.Load("http://svcs.ebay.com/services/search/FindingService/v1?OPERATION-NAME=findItemsByKeywords&SERVICE-VERSION=1.0.0&SECURITY-APPNAME=" + myAppID + "&RESPONSE-DATA-FORMAT=XML&REST-PAYLOAD&keywords=" + keywords + "&paginationInput.entriesPerPage=5");
            XNamespace ns = "http://www.ebay.com/marketplace/search/v1/services";
            var titles = from item in xml.Root.Descendants(ns + "title")
                              select new{
                                  title = xml.Descendants(ns + "title").Select (x => x.Value),
                              };
        foreach (var item in titles){
                Label1.Text += item;
            } 
        }

这是xml示例:

<findItemsByKeywordsResponse xmlns="http://www.ebay.com/marketplace/search/v1/services">
<searchReslut count="5">
<item>
    <title></title>
</item>
<item>
    <title></title>
</item>
<item>
    <title></title>
</item>

我真的宁愿将这些项目变成一个数组,而不仅仅是列出它们。只是想我会先尝试更简单的方法。我得到的错误是:我的标签的 for 循环输出如下所示:

{ title = System.Linq.Enumerable+WhereSelectEnumerableIterator`2[System.Xml.Linq.XElement,System.String] }{ title = System.Linq.Enumerable+WhereSelectEnumerableIterator`2[System.Xml.Linq.XElement,System.String] }{ title = System.Linq.Enumerable+WhereSelectEnumerableIterator`2[System.Xml.Linq.XElement,System.String] }{ title = System.Linq.Enumerable+WhereSelectEnumerableIterator`2[System.Xml.Linq.XElement,System.String] }{ title = System.Linq.Enumerable+WhereSelectEnumerableIterator`2[System.Xml.Linq.XElement,System.String] }

输出异常是:

mscorlib.dll 中出现“System.Threading.ThreadAbortException”类型的第一次机会异常 mscorlib.dll 中出现“System.Threading.ThreadAbortException”类型的异常,但未在用户代码中处理线程“”(0x27ee4)已退出代码为 0 (0x0)。

任何帮助表示赞赏!

4

2 回答 2

1

异常来自:

var titles = from item in xml.Root.Descendants(ns + "title")
             select new
             {
                 title = item.Parent.Element("title").Value,
             };

您不需要去找父母,您可以直接获取 title 的值,因为这就是您要搜索的内容:

xml.Descendants(ns + "title").Select (x => x.Value)

另外,请看这里Asking Better Questions,因为它可能会让你得到更快/更好的响应。您的问题中有大量不相关的代码,并且很难解析以获取您实际需要帮助的内容。

于 2012-06-27T01:47:54.623 回答
0

这应该很容易完成。尝试使用下面的代码。我只是从您的示例中设置示例 XML 并将其解析为 XElement(注意:缺少一些结束标记,我还假设“searchReslut”节点应该是“searchResult”)。接下来,我从根节点中获取名称为“title”且值不为空的所有后代节点。然后我只是循环通过创建的 IEnumerable,并连接标签的文本。如果有任何问题,请告诉我。

string ns = "http://www.ebay.com/marketplace/search/v1/services";
string returnedXml = "<findItemsByKeywordsResponse xmlns=\"" + ns + "\">" +
                    "<searchReslut count=\"5\">" +
                        "<item>" +
                            "<title>Title1</title>" +
                        "</item>" +
                        "<item>" +
                            "<title>Title2</title>" +
                        "</item>" +
                        "<item>" +
                            "<title>Title3</title>" +
                        "</item>" +
                     "</searchReslut>" +
                    "</findItemsByKeywordsResponse>";
        XElement xml = XElement.Parse(returnedXml);
        IEnumerable<XElement> titleNodes = xml.Descendants("title").Where(x => x.Value != null);
        foreach (XElement t in titleNodes)
        {
            Label1.Text += t.Value;
        }            
于 2012-07-05T15:50:19.413 回答