我正在尝试变换 jolt,但在嵌套数组中遇到了问题。我没有得到描述值。我把一些代码JSON输入是
{ "id": 3,
"name": "Sample Product", "attribute_set_id": 4, "custom_attributes": [ { "attribute_code": "image", "value": "/1/_/1.jpg" },
{ "attribute_code": "description", "value": "
This is Sample Product for test
" }[ { "operation": "shift", "spec": { "id": "id",
"name": "name", "description": "custom_attributes[0].attribute_code.value" } ] 我的预期输出是
{ "id" : 3, "name" : "Sample Product", "description" : "
This is Sample Product for test
" }如果"attribute_code": "description"总是出现在数组的第二个元素中,则可以使用以下Jolt Spec来简单地转换给定的JSON字符串:
[ { "operation": "shift", "spec": { "id": "id", "name": "name", "custom_attributes": { "1": { "value": "description" } } } } ]
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。