graphql_flutter返回LazyCacheMap,built_value deserializeWith JSON字符串,如何使它们协同工作

时间:2019-06-20 14:13:57

标签: flutter graphql

graphql_flutter返回LazyCacheMapbuilt_value deserializeWith JSON String,了解如何使它们协同工作。

  1. 我使用graphql_flutter来获取数据,然后响应将结果数据显示为LazyCacheMap
  2. 并且使用built_value进行数据模型和数据序列化,但是由于deserializeWithJSON String一起使用。

与他们一起工作的最佳方式是什么?

  • 我应该将LazyCacheMap的数据转换为String并调用deserializeWith吗?
  • 我应该使用其他序列化发布者吗?

1 个答案:

答案 0 :(得分:0)

首先使用#!/usr/bin/python inputFile = 'servers' outputFile = 'cservers' with open(inputFile) as fi: serverList = fi.read().split(',') # Read file contents as list of strings delimited by comma in file with open(outputFile,'w') as fo: fo.writelines(s + '\n' for s in serverList) # Write each string in serverList on own line encodeLazyCacheMap的响应JSON,然后执行所需的任何操作。

dart:convert

为我工作。