에서 JSON을 다중. 다중 값 셀의 내용을 가져 오려고하면 제대로 작동하지 않습니다.는 구문 분석 나는 다음과 같은 내용으로 열이 GREL (OpenRefine)
forEach(value.parseJson().resource,v,v.resource)
내가 예를 들어, 많은 오류를 얻을 : 내가 https://github.com/OpenRefine/OpenRefine/wiki/GREL-Other-Functions에 따라 시도
7. {"resource":"abc"} Error: First argument to forEach is not an array
8. [{"resource":"def"},{"resource":"ghi"}] Error: Object does not have any field, including resource
그리고 만 다중 세포를 얻을 수 있지만이 하나가 아닌 단일 값 세포 :
forEach(value.parseJson(),v,v.resource)
한 줄에 넣고 싶다면 다음을 사용할 수 있습니다 :'' '''(value.parseJson(), v, v.resource) .join ("|"), value.parseJson(). resource)''' –
고마워요. , 그 일했다! –