douxin2011 2018-10-13 03:20
浏览 480
已采纳

Flutter用Golang RFC3339中的DateTime解析json:FormatException:无效的日期格式

When trying to read json files generated with golangs json package in Dart / Flutter I noticed that parsing dates produce an error:

FormatException: Invalid date format

An example is the following json generated on the Go server:

{
    ...
    "dateCreated": "2018-09-29T19:51:57.4139787-07:00",
    ...
}

I am using the code generation approach for json (de-)serialization to avoid writing all the boiler plate code. The json_serializable package is a standard package available for this purpose. So my code looks like the following:

@JsonSerializable()
class MyObj {

  DateTime dateCreated;

  MyObj( this.dateCreated);

  factory MyObj.fromJson(Map<String, dynamic> json) => _$MyObjFromJson(json);  
  Map<String, dynamic> toJson() => _$MyObjToJson(this); 
}
  • 写回答

2条回答 默认 最新

  • duangekui7451 2018-10-13 03:20
    关注

    Because the documentation doesn't cover this sufficiently it took me a day of researching the flutter sources and trial & error of different things to solve it. So may as well share it.

    Golang by default encodes the time.Time in RFC3339 when serializing to Json (like in the given example). Flutter explicitly supports RFC3339, so why doesn't it work? The answer is a small difference in how the seconds fraction part is supported. While Golang produces a precision of 7 digits Dart only supports up to 6 digits and does not gracefully handle violations. So if the example is corrected to only have 6 digits of precision it will parse just fine in Dart:

    {
        ...
        "dateCreated": "2018-09-29T19:51:57.413978-07:00",
        ...
    }
    

    In order to solve this in a generic way you have two options: 1. to truncate the additional precision from the string, or 2. implement your own parsing. Let's assume we extend the DateTime class and create your own CustomDateTime. The new class has the parse method overridden to remove all excess after 6 digits before handing it to the parent class' parse method.

    Now we can use the CustomDateTime in our Dart classes. For example:

    @JsonSerializable()
    class MyObj {
    
      CustomDateTime dateCreated;
    
      MyObj( this.dateCreated);
    
      factory MyObj.fromJson(Map<String, dynamic> json) => _$MyObjFromJson(json);  
      Map<String, dynamic> toJson() => _$MyObjToJson(this); 
    }
    

    But of course now the code generation is broken and we get the following error:

    Error running JsonSerializableGenerator
    Could not generate 'toJson' code for 'dateCreated'.
    None of the provided 'TypeHelper' instances support the defined type.
    

    Luckily the json_annotation package now has an easy solution for us - The JsonConverter. Here is how to use it in our example:

    First define a converter that explains to the code generator how to convert our CustomDateTime type:

    class CustomDateTimeConverter implements JsonConverter<CustomDateTime, String> {
      const CustomDateTimeConverter();
    
      @override
      CustomDateTime fromJson(String json) =>
          json == null ? null : CustomDateTime.parse(json);
    
      @override
      String toJson(CustomDateTime object) => object.toIso8601String();
    }
    

    Second we just annotate this converter to every class that is using our CustomDateTime data type:

    @JsonSerializable()
    @CustomDateTimeConverter()
    class MyObj {
    
      CustomDateTime dateCreated;
    
      MyObj( this.dateCreated);
    
      factory MyObj.fromJson(Map<String, dynamic> json) => _$MyObjFromJson(json);  
      Map<String, dynamic> toJson() => _$MyObjToJson(this); 
    }
    

    This satisfies the code generator and Voila! We can read json with RFC3339 timestamps that come from golang time.Time.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog