0

我一直在尝试从此 API 获取移动链接,但没有成功

.done(function( data ) {    
                var ol = $("<ol/>");

            $.each( data.headlines, function(h_key, headlines) {
var h2 = $( "<h2/>" ).append(headlines.headline);
 var a = $( "<a/>" ).attr("href", headlines.links.mobile);

ol.append(h2)
 ol.append(a)

这是我试图从中获取链接的响应正文

{
"timestamp": "2013-10-21T14:50:18Z",
"resultsOffset": 0,
"status": "success",
"resultsLimit": 10,
"resultsCount": 27,
"headlines": [{
    "headline": "Portugal land Sweden in playoff draw",
    "keywords": ["UEFA WCQ: Portugal land Sweden in playoff draw"],
    "lastModified": "2013-10-21T14:17:13Z",
    "audio": [],
    "premium": false,
    "mobileStory": "",
    "links": {
        "api": {
            "news": {
                "href": "http://api.espn.com/v1/sports/news/1588808?region=GB"
            }
        },
        "web": {
            "href": "http://espnfc.com/news/story/_/id/1588808/portugal-land-sweden-playoff-draw?ex_cid=espnapi_public"
        },
        "mobile": {
            "href": "http://m.espn.go.com/soccer/story?storyId=1588808&ex_cid=espnapi_public"
        }
    },
4

2 回答 2

1

headlines是一个数组。此外,mobile还有另一个组件需要深入研究。尝试这个:

headlines[0].links.mobile.href

当然,您可能需要添加一些运行时检查以确保在headlines索引之前有一个元素。

测试此类事情的一个好方法是在您的浏览器调试工具中。通常你可以在调试器中放一个断点,然后查看 JSON 对象的结构。在 JavaScript 控制台上引用该对象的组件的一些快速试验和错误将帮助您浏览其结构。

编辑:我刚刚注意到你正在迭代数组,所以更有可能:

headlines.links.mobile.href

您可能想要更改迭代器变量的名称,headlines因为它可能会导致混淆。 headline似乎是一个明智的选择。

于 2013-10-22T09:48:02.880 回答
0

尝试这个,

var h2 = $( "<h2/>" ).append(headlines[0].headline);
var a = $( "<a/>" ).attr("href", headlines[0].links.mobile.href);
于 2013-10-22T10:20:27.133 回答