Reputation: 994
I am getting this error message while sending my array to intent. My array read like this
var result = {
a:1,
b:2,
c:{d:5,e:6,f:7},
x:3,
y:4,
z:9
}
This is the structure and now I am getting the error
Value Compilation Error: EmptyOptionalValue
IllegalSlot:illegal binding 'd' for '1.0.3-myApp.api.C': ./c
IllegalSlot:illegal binding 'e' for '1.0.3-myApp.api.C': ./c
IllegalSlot:illegal binding 'f' for '1.0.3-myApp.api.C':
Upvotes: 0
Views: 226
Reputation: 886
This is most likely due to a mismatch between the Structure model defined to represent this array and the result
being returned by the Action Javascript.
Upvotes: 1