The JsonBinWrite class is responsible for serializing various data types into a binary format that can be saved or transmitted.

JsonBinWrite类负责将各种数据类型序列化为可保存或传输的二进制格式。

构造函数

属性

objectRef: any = {}

An object used to store references to other objects during the serialization process.

在序列化过程中用于存储对其他对象引用的对象。

COMPRESS: string = "_$TeMpkEy$_CoMpReSs"

A special string used for compression identification within the serialized data.

用于在序列化数据中标识压缩的特殊字符串。

NOSAVE_KEY_LEN: number = 15

The length of the special NOSAVEKEY string.

特殊的NOSAVEKEY字符串的长度。

NOSAVEKEY: string = "_$TeMpkEyNoSv$_"

A special string used to mark keys that should not be saved.

用于标记不应保存的键的特殊字符串。

NOSAVETHISOBJ: string = "$__$disbaleJsonBinSv"

A special string used to mark an object that should not be saved in a specific way.

用于以特定方式标记不应保存的对象的特殊字符串。

NOSAVETHISOBJ_DELETE: number = 2

A constant value used to indicate a specific action related to not saving an object (delete).

用于指示与不保存对象相关的特定操作(删除)的常量值。

NOSAVETHISOBJ_TRUE: number = 1

A constant value used to indicate a specific action related to not saving an object (true).

用于指示与不保存对象相关的特定操作(真)的常量值。

访问器

方法

  • 参数

    • o: any

      The object to be serialized.

    • __CLASS__: boolean = false

      A flag indicating whether to include class information (default is false).

    返回 ArrayBuffer

    The serialized object as an ArrayBuffer.

    Serializes the given object into a binary format and returns the resulting buffer.

    将给定对象序列化为二进制格式并返回生成的缓冲区。

  • 参数

    • o: any

      The object to be checked.

    返回 boolean

    True if the object is a word text, false otherwise.

    Checks if the given object is a word text.

    检查给定对象是否为单词文本。