自定义对象未完全编码为 JSON 对象

发布于 2024-10-13 06:48:26 字数 595 浏览 5 评论 0原文

我有以下课程:

public class PartBean extends DatabaseObjectBean{
  [Bindable]
  public var partNumber:String;
  [Bindable]
  public var description:String;

  public var enterpriseIdentifiers:ArrayList;
}

零件已经这样定义。 零件编号 = -1 描述 = 测试 该列表填充了另一个对象[“Name1”,“Name2,“Name3”]等。

在我调用的另一个对象中:

import com.adobe.serialization.json.JSONEncoder;
public function blah(){

    JSONEncoder encoder = new JSONEncoder();
    Alert.show(encoder.encode(part);
}

我最终得到这个字符串:{“description”:“Test”,“partNumber”:“- 1"}

我不确定为什么数组没有被编码。

I have the following class:

public class PartBean extends DatabaseObjectBean{
  [Bindable]
  public var partNumber:String;
  [Bindable]
  public var description:String;

  public var enterpriseIdentifiers:ArrayList;
}

Part is already defined as such.
Part Number = -1
Description = Test
The list is filled with another Object["Name1", "Name2, "Name3"] etc..

In another object I call:

import com.adobe.serialization.json.JSONEncoder;
public function blah(){

    JSONEncoder encoder = new JSONEncoder();
    Alert.show(encoder.encode(part);
}

I end up with this string: {"description":"Test","partNumber":"-1"}

I am not sure why the array is not being encoded as well.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

○闲身 2024-10-20 06:48:26

您必须为 ArrayList 编写自己的序列化代码。 ActionScript 提供的 JSON 编码器仅对本机 ActionScript 对象进行编码。

You'll have to write your own serialization code for the ArrayList. The JSON encoder provided with ActionScript will only encode native ActionScript objects.

故事灯 2024-10-20 06:48:26

答案似乎很简单,编码器需要可绑定项目才能看到它们。

[Bindable] 
    public var enterpriseIdentifiers:ArrayList;

It seems the answer is simply that the encoder needs the items to be bindable in order to see them.

[Bindable] 
    public var enterpriseIdentifiers:ArrayList;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文