json_object和dart:镜像

我在
Using Dart with JSON Web Services中使用json_object

代码在Dartium中运行良好.在使用dart_to_js_script_rewriter构建时,将引发警告.

WARNING: dart:mirrors support in dart2js is experimental,
* and not recommended.
* This implementation of mirrors is incomplete,
* and often greatly increases the size of the generated
* JavaScript code.
*
* Your app imports dart:mirrors via: package:json_object => dart:mirrors

json_object有什么好的替代品?我知道JSON.decode存在,但我想尽可能避免使用Map API

最佳答案 要使用json,现在建议使用代码生成,如果您使用浏览器或反射,如果您使用Dart VM.

您可以尝试像jaguar_serializer这样的软件包来帮助您将JSON字符串转换为Dart对象.

点赞