Kimono: 修改数据、分解字符串和添加新的函数属性

Kimono: Function to modify data, explode string and add new a new property

我正在使用 Kimono 提取一些数据并创建一个 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/"
      }
    ]
  }
}

我正在尝试 GET hreftitle element 中的值,然后 explode string 获取id号(9418, 9422, 9358, 9419在上面的代码中)并创建一个新的属性 仅包含 ID 号。

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

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

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'"
}

kimono 中的代码检查器也有 2 个警告:

On line 7: Don't make functions within a loop.
On line 8: Unnecessary semicolon

感谢任何帮助和指示,以找出上面代码的问题, 谢谢。

附录 - 新尝试

这是更新后的 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"
}

Kimono 检查员警告

line 5: Assignment in conditional expression.
line 8: Don't make functions within a loop.

您的行将如下所示:

{
  "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] 将等于 "id"parts[6] 将等于 9358。这是因为 http: 之后的 // 将在 "http:""www.tvtrailers.com" 之间创建一个空项。

换句话说,你拆分的数组看起来像这样: ["http:", "", "www.tvtrailers.com", "scenes", "view", "id", "9358", "title", ""]

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

这里有一个函数,将在 title 对象中添加 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>');

关于您收到的警告:

On line 7: Don't make functions within a loop.

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

On line 8: Unnecessary semicolon

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

附录 - 反馈

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

line 5: Assignment in conditional expression.

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

line 8: Don't make functions within a loop.

我之前写过可以忽略此警告,但现在我已将 foreach 循环替换为标准 for 循环,因此您不应再收到此警告。

line 16: document.write can be a form of eval

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

"message": "Your function failed to evaluate because of Error: parts is not defined"

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

我还添加了一个 return 语句,因为 Kimono 可能也需要它,我不知道。