firebase 发生异常,格式异常(格式异常:意外扩展字节(偏移量37处)

4zcjmb1e  于 2023-01-31  发布在  其他
关注(0)|答案(1)|浏览(137)

如何解决这个错误?
我想打印json文件的数据,但当我调试我的代码比这个错误已经发生,我期待的json文件的数据作为输出。

3xiyfsfu

3xiyfsfu1#

像这样使用

Future<void> readJson() async {
final String response = await rootBundle.loadString('assets/jsonFile.json');
final data = await json.decode(response);
print(json.encode(data));
}

相关问题