我正在使用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
href
内title
element
的价值,然后
explode
string
获取上述代码中的ID号(9418
,9422
,9358
,9419
并创建新属性只有身份证号码。
或者,如果无法创建新属性,那么我只想替换所有href
字符串并保留ID号而不是完整的href
网址。
以下是我正在使用的代码: - 没有工作
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'"
}
和服内的代码检查员也有2个警告:
第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"
}
Kimono Inspector警告
第5行:条件表达式中的赋值 第8行:不要在循环中创建函数。
答案 0 :(得分: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]
将等于"id"
而parts[6]
将等于9358
。这是因为//
之后的http:
会在"http:"
和"www.tvtrailers.com"
之间创建一个空项目。
换句话说,拆分数组将如下所示:
["http:", "", "www.tvtrailers.com", "scenes", "view", "id", "9358", "title", ""]
答案 1 :(得分: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-loop闭合括号后的分号。你应该删除那个。
您尝试了我的代码的先前版本(现在出现在您的问题中)并列出了Kimono提出的一些问题,这些问题似乎有自己的Javascript解析器并且应用比浏览器更严格的规则:
第5行:条件表达式中的赋值。
我更新了上面的代码,将分配移出条件表达式。
第8行:不要在循环中创建函数。
我之前写过,可以忽略此警告,但现在我已将foreach
循环替换为标准for
循环,因此您不应再收到此警告。
第16行:document.write可以是eval的一种形式
对函数 addPostNumbers 和 document.write 的调用仅在我的代码片段中演示解决方案。代码的那部分不打算在您的代码中使用。
“message”:“由于错误,您的功能无法评估:未定义部件”
我在上面的代码中添加了var
语句以避免这种情况。
我还添加了一个return
声明,因为Kimono也可能需要它,我不知道。