我正在尝试从 URL 加载 json 文件并在 Dart 中解析它。所以我在谷歌搜索时尝试了一些链接中建议的以下代码:
HttpRequest.getString("hellknight2.js").then((response)
{
var model = new JSON.parse(response);
});
但是,它似乎不再适用于 Dart SDK 版本 0.4.3.5_r20602。将 Json 文件映射到 Dart 中的对象的当前最佳方法是什么?