自定义序列化
Customize serialization and deserialization with Newtonsoft.Json attributes.
阅读时间1 分钟最后更新于 1 个月前
Cloud Code 模块使用 Newtonsoft.Json 库对数据进行序列化和反序列化。您可以使用
Newtonsoft.JsonJsonProperty如需了解更多信息,请参阅 Newtonsoft.Json 文档。using Newtonsoft.Json;public class MyData{ [JsonProperty("myProperty")] public string MyProperty { get; set; }}