Я пытаюсь объединить два массива:
arr1: [{"a":"value"}]
arr2: [{"b":"value"}]
expected result:[{{"a":"value"},{"b":"value"}}]
vars.arr1 ++ vars.arr2 gives an error when arr1 is null.
org.mule.runtime.core.api.expression.ExpressionRuntimeException: "You called the function '+' with these arguments:
1: Null (null)
2: Object
Как мне обработать следующий сценарий ios:
- , когда оба массива равны нулю
- когда один из массивов равен нулю.