我想遍历这样的JSON节点(即/node.json)
{
"One": {
"Name": "One",
"Country": "US"
},
"Two": {
"State": "kentucky"
},
"Three": {
"Element1": "value1",
"Element2": "value2",
"Element3": "value3",
"Element4": "value4",
so on ...
}
}
更新
我的用例:我尝试使用以下配置运行CORB作业
Transform.xqy(我将所有元素保留在数组中)
var name = fn.tokenize(URI, ";");
const node = cts.doc(name);
var a= node.xpath("/One/*");
var b= node.xpath("/Two/*");
var c= node.xpath("/Three/*");
fn.stringJoin([a, b, c,name], " , ")
当开始运行CORB作业以在我的marklogic DB中为130万个文档创建CSV文件时,这是一个永无止境的故事。
最佳答案
更新为使用Corb中的批处理
好。根据故障单中的更多信息:
(1)您没有遍历uri
(2)您正在对嵌套数组进行联接。似乎很奇怪。
我的示例文档:
declareUpdate()
let obj = {
One: {
Name: "One",
Country: "US"
},
Two: {
State: "kentucky"
},
Three: {
Element1: "value1",
Element2: "value2",
Element3: "value3",
Element4: "value4"
}
}
xdmp.documentInsert('/test1.json', obj)
xdmp.documentInsert('/test2.json', obj)
根据示例,我认为代码可以在您的模块中使用。 uris是模仿来自Corb的分批uris:
let uris= '/test1.json;/test2.json'
let rows = uris.split(';')
rows.map(uri => {
let obj = fn.head(fn.doc(uri)).toObject()
return [
...Object.keys(obj.One).map(k => obj.One[k]),
...Object.keys(obj.Two).map(k => obj.Two[k]),
...Object.keys(obj.Three).map(k => obj.Three[k])
].join(',')
}).join('\n')
导致:
One,US,kentucky,value1,value2,value3,value4
One,US,kentucky,value1,value2,value3,value4