我知道我以错误的方式解决了这个问题,老实说这可能是因为我错误地处理了递归,但如果是这样的话,我不确定我哪里出错了。以下是example的链接。
这是JavaScript -
function propertyTest(currentObject, key) {
for (var property in currentObject) {
if (typeof currentObject[property] === "object") {
propertyTest(currentObject[property], property);
} else {
// this is only to test the output
$('#method1').append((property == 'value' && key ? key : property) + ' -- ' + currentObject[property] + '<br />');
propertyKey = (property == 'value' && key ? key : property);
propertyValue = currentObject[property];
var arrayJSON = [];
arrayJSON.push(propertyKey);
arrayJSON.push(propertyValue);
}
}
var JSONString = JSON.stringify(arrayJSON);
console.log(JSONString);
return JSONString;
}
这是原始的JSON -
var oarsObject = [{
"coordinateReferenceSystem": "26782,15851",
"positionReferenceType": "geogWgs84",
"geogWgs84": {
"latitude": {
"value": 0.50507158458214041
},
"longitude": {
"value": -1.604064725846865
},
"height": {
"value": 0.0
}
}
}, {
"coordinateReferenceSystem": "26782,15851",
"positionReferenceType": "geogWgs84",
"geogWgs84": {
"latitude": {
"value": 0.50509265195620767
},
"longitude": {
"value": -1.5961047836759397
},
"height": {
"value": 0.0
}
}
}, {
"coordinateReferenceSystem": "26782,15851",
"positionReferenceType": "geogWgs84",
"geogWgs84": {
"latitude": {
"value": 0.4963464715653228
},
"longitude": {
"value": -1.5960947041991222
},
"height": {
"value": 0.0
}
}
}, {
"coordinateReferenceSystem": "26782,15851",
"positionReferenceType": "geogWgs84",
"geogWgs84": {
"latitude": {
"value": 0.49632551101280209
},
"longitude": {
"value": -1.604015267530267
},
"height": {
"value": 0.0
}
}
}]
JSON按照您的预期发送到函数 -
propertyTest(oarsObject);
以下是它从轨道上掉下来的证据 - 来自控制台的一个片段 -
["latitude",0.5050715845821404]
["longitude",-1.604064725846865]
["height",0]
undefined
["positionReferenceType","geogWgs84"]
["latitude",0.5050926519562077]
["longitude",-1.5961047836759397]
["height",0]
undefined
注意前两个项目最初是如何出现在日志中的,之后只是positionReferenceType
。另请注意 undefined JSON字符串。我确定这是因为我的递归是错误的。
我知道JavaScript数组在阅读其他几篇帖子之后需要数字键,但我很好奇。 JSON.stringify()
似乎对其中一些而不是其他人有效。此外,结果是不一致的,在第一轮positionReferenceType
确实被字符串化之后,虽然显然是错误的顺序(再次,我确信这是因为我的递归努力已经关闭)。
这个用例是双重的。首先,我们要剥离不必要的价值&#39;原始JSON的密钥,由系统的一部分生成,此时我们无法修改。其次,系统的其他部分使用我们希望从这样的函数输出的离散的较小JSON位。输出应该是小的,单独的JSON字符串(类似于HTML输出中显示的)。 输出应该是单个JSON字符串,由单个键/值对组成,如下例所示。
[
{
"coordinateReferenceSystem": "26782,15851"
},
{
"positionReferenceType": "geogWgs84"
},
{
"latitude": 0.5050715845821404
},
{
"longitude": -1.604064725846865
},
{
"height": 0
}
]
我甚至还没有接近组装整个JSON字符串的点,因为我只是试图正确地将对出来。
我确定我在这里忽略了一些东西。我应该创建一个对象,而不是一个数组来获取所有字符串化吗?或者,除了我认为是我提到的明显问题之外,我的递归中有什么东西绊倒我?
答案 0 :(得分:2)
通常,有两种方法可以重复并获得单个扁平数组。
无论哪种方式,您都需要首先测试Array主题,然后检查Object subject,因为Array是Object,通常你会想要为它们做不同的事情。
此外,通常您将处理结果(例如转换为JSON然后记录)外部递归,以保持递归简短。
这是使用第一种方法的实现,包括顶层的JSON转换。 我尽可能重用你的变量名。
function propertyTest( currentObject, array, key ) {
var result = array || [], o;
if ( Array.isArray( currentObject ) ) {
currentObject.forEach( function ( e ) { propertyTest( e, result ); } );
} else if ( typeof ( currentObject ) === 'object' ) {
if ( 'value' in currentObject && Object.keys( currentObject ).length === 1 ) {
propertyTest( currentObject.value, result, key );
} else {
for ( var property in currentObject ) {
propertyTest( currentObject[ property ], result, property );
}
}
} else {
result.push( o = {} );
o[ key ] = currentObject;
}
return array === undefined ? JSON.stringify( result ) : result;
}
var oarsObject = [{
"coordinateReferenceSystem": "26782,15851",
"positionReferenceType": "geogWgs84",
"geogWgs84": {
"latitude": {
"value": 0.50507158458214041
},
"longitude": {
"value": -1.604064725846865
},
"height": {
"value": 0.0
}
}
}, {
"coordinateReferenceSystem": "26782,15851",
"positionReferenceType": "geogWgs84",
"geogWgs84": {
"latitude": {
"value": 0.50509265195620767
},
"longitude": {
"value": -1.5961047836759397
},
"height": {
"value": 0.0
}
}
}, {
"coordinateReferenceSystem": "26782,15851",
"positionReferenceType": "geogWgs84",
"geogWgs84": {
"latitude": {
"value": 0.4963464715653228
},
"longitude": {
"value": -1.5960947041991222
},
"height": {
"value": 0.0
}
}
}, {
"coordinateReferenceSystem": "26782,15851",
"positionReferenceType": "geogWgs84",
"geogWgs84": {
"latitude": {
"value": 0.49632551101280209
},
"longitude": {
"value": -1.604015267530267
},
"height": {
"value": 0.0
}
}
}];
alert( propertyTest( oarsObject ) );
&#13;
答案 1 :(得分:1)
您可能希望将结果数组的范围限制在递归函数之外,如Sheepy所述。
当它是数组值时使用forEach
,当它是对象的对象时使用for
。这样,您只需处理一个对象的推送而无需维护该数组。
var arrayJSON = [];
function propertyTest(currentObject, key) {
if (Array.isArray(currentObject)) {
currentObject.forEach(propertyTest);
} else {
for (var returnKey in currentObject) {
if (typeof currentObject[returnKey] === 'object') {
propertyTest(currentObject[returnKey], returnKey);
} else {
var newKey = (returnKey === 'value' && key) ? key : returnKey;
var newObj = {};
newObj[newKey] = currentObject[returnKey];
arrayJSON.push(newObj);
$('#method1').append( newKey + ' -- ' + currentObject[returnKey] + '<br />');
}
}
}
}
propertyTest(oarsObject);
console.log(JSON.stringify(arrayJSON););