0

我正在使用和服来提取一些数据并创建一个 API:

{
  "name": "site update",
  "count": 4,
  "frequency": "Manual Crawl",
  "version": 1,
  "newdata": true,
  "lastrunstatus": "success",
  "thisversionstatus": "success",
  "thisversionrun": "Sun Feb 07 2016 05:13:26 GMT+0000 (UTC)",
  "results": {
    "collection1": [
      {
        "title": {
          "href": "http://www.tvtrailers.com/scenes/view/id/9418/title-1/",
          "text": "Title 1"
        },
        "pubDate": "February 6, 2016",
        "index": 1,
        "url": "http://www.tvtrailers.com/home/"
      },
      {
        "title": {
          "href": "http://www.tvtrailers.com/scenes/view/id/9422/title-2/",
          "text": "Title 2"
        },
        "pubDate": "February 6, 2016",
        "index": 2,
        "url": "http://www.tvtrailers.com/home/"
      },
      {
        "title": {
          "href": "http://www.tvtrailers.com/scenes/view/id/9358/title-3/",
          "text": "Title 3"
        },
        "pubDate": "February 5, 2016",
        "index": 3,
        "url": "http://www.tvtrailers.com/home/"
      },
      {
        "title": {
          "href": "http://www.tvtrailers.com/scenes/view/id/9419/title-4/",
          "text": "Title 4"
        },
        "pubDate": "February 5, 2016",
        "index": 4,
        "url": "http://www.tvtrailers.com/home/"
      }
    ]
  }
}

我正在尝试获取 id内的值GET,然后 获取 id 号(上面代码中的, , , )并仅使用 id 号创建一个新属性。hreftitle elementexplodestring9418942293589419

或者,如果无法创建新属性,那么我只想替换所有href字符串并保留 id 号而不是完整的hrefurl。

这是我正在使用的代码: - 不工作

function getpost_number(data) { 
    var post_number = 0; 
    for(var href in data.results) { 
        data.results[href].forEach(function(row) { 
            var parts = row.split("/"); 
            console.log(parts[5]+parts[6]); 
        }); 
    }; 
    data.post_number = post_number; 
    return data; 
}

结果:

{
  "error": "Bad Request",
  "message": "Your function failed to evaluate because of Error: Object object has no method 'split'"
}

和服内的代码检查员也有两个警告:

第 7 行:不要在循环中创建函数。
第 8 行:不必要的分号

感谢您提供任何帮助和指导,以找出上面的代码有什么问题,谢谢。

附录 - 新尝试

这是function我在以下评论中使用 Trincot 提供的代码的更新:

function addPostNumbers(data) {
    for(var collection in data.results) {
        data.results[collection].forEach(function(row) {
            if (parts = row.title.href.match(/\/(\d+)\//)) {
                row.title.post_number = parts[1];
            }
        });
    }
}

输出:

{
  "error": "Bad Request",
  "message": "Your function failed to evaluate because of Error: parts is not defined"
}

和服检查员警告

第 5 行:条件表达式中的赋值。
第 8 行:不要在循环中创建函数。

4

2 回答 2

0

您的行将如下所示:

{
  "title": {
    "href": "http://www.tvtrailers.com/scenes/view/id/9358/title/“,
    "text": "Title 1"
  },
  "pubDate": "February 5, 2016",
  },
  "index": 1,
  "url": "http://www.tvtrailers.com/videos/thismonth/bydate/"
}

这意味着你想深入挖掘并分裂row.title.href

另外,我不确定您希望检索哪些部分,但parts[5]将 equal"id"parts[6]will equal 9358。那是因为//after将在andhttp:之间创建一个空项目。"http:""www.tvtrailers.com"

换句话说,您拆分的数组将如下所示: ["http:", "", "www.tvtrailers.com", "scenes", "view", "id", "9358", "title", ""]

于 2016-02-06T23:10:59.780 回答
0

您最初提供的数据不是有效的 JSON,因为它的右大括号比左大括号多,而且它有一些弯双引号。稍后在您的问题中解决了这一问题。

这是一个将在标题对象中添加post_number属性的函数,前提是href属性包含一个数字的文件夹名称。

当您运行此代码段时,它将输出带有附加属性的结果 (JSON):

function addPostNumbers(data) {
    var collection, rows, i, parts;
    for (collection in data.results) {
        var rows = data.results[collection];
        for (i=0; i<rows.length; i++) {
            parts = rows[i].title.href.match(/\/(\d+)\//);
            if (parts) {
                rows[i].title.post_number = parts[1];
            }
        }
    }
    return data;
}

// test data
var data = {
  "name": "site update",
  "count": 4,
  "frequency": "Manual Crawl",
  "version": 1,
  "newdata": true,
  "lastrunstatus": "success",
  "thisversionstatus": "success",
  "thisversionrun": "Sun Feb 07 2016 05:13:26 GMT+0000 (UTC)",
  "results": {
    "collection1": [
      {
        "title": {
          "href": "http://www.tvtrailers.com/scenes/view/id/9418/title-1/",
          "text": "Title 1"
        },
        "pubDate": "February 6, 2016",
        "index": 1,
        "url": "http://www.tvtrailers.com/home/"
      },
      {
        "title": {
          "href": "http://www.tvtrailers.com/scenes/view/id/9422/title-2/",
          "text": "Title 2"
        },
        "pubDate": "February 6, 2016",
        "index": 2,
        "url": "http://www.tvtrailers.com/home/"
      },
      {
        "title": {
          "href": "http://www.tvtrailers.com/scenes/view/id/9358/title-3/",
          "text": "Title 3"
        },
        "pubDate": "February 5, 2016",
        "index": 3,
        "url": "http://www.tvtrailers.com/home/"
      },
      {
        "title": {
          "href": "http://www.tvtrailers.com/scenes/view/id/9419/title-4/",
          "text": "Title 4"
        },
        "pubDate": "February 5, 2016",
        "index": 4,
        "url": "http://www.tvtrailers.com/home/"
      }
    ]
  }
};

// don't add this to your code. Kimono will do this (I suppose):
addPostNumbers(data);

// write result in document, don't add this in your own code
document.write('<pre>' + JSON.stringify(data, null, 2) + '</pre>');

关于您收到的警告:

第 7 行:不要在循环中创建函数。

您可以忽略此警告。这是为了避免运行时必须一次又一次地创建函数,因为它是在循环中定义的。这里涉及forEach回调函数,其中forEach调用出现在循环本身中。但是,使用该forEach构造,大多数运行时都会有效地解析它。

第 8 行:不必要的分号

这涉及 for 循环右括号后的分号。你应该删除那个。

附录 - 反馈

您尝试了我的代码的先前版本(现在出现在您的问题中)并列出了 Kimono 提出的一些问题,它似乎有自己的 Javascript 解析器并应用比浏览器更严格的规则:

第 5 行:条件表达式中的赋值。

我已经更新了上面的代码,将赋值移出条件表达式。

第 8 行:不要在循环中创建函数。

我之前写过这个警告可以忽略,但现在我已经将foreach循环替换为标准for循环,所以你不应该再收到这个警告了。

第 16 行:document.write 可以是 eval 的一种形式

对函数addPostNumbersdocument.write的调用仅在我的代码段中用于演示解决方案。这部分代码不打算在您的代码中使用。

"message": "您的函数因错误而无法评估:未定义部分"

var在上面的代码中添加了一条语句来避免这种情况。

我还添加了一个return声明,因为和服可能也需要它,我不知道。

于 2016-02-06T23:55:29.377 回答