0

我在将数组发送到意图时收到此错误消息。我的数组是这样的

var result = {
  a:1,
  b:2,
  c:{d:5,e:6,f:7},
  x:3,
  y:4,
  z:9
}

这是结构,现在我收到错误

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':
4

1 回答 1

1

这很可能是由于定义为表示此数组的结构模型result与 Action Javascript 返回的模型不匹配所致。

于 2019-03-27T16:57:14.260 回答