graphql_flutter
返回LazyCacheMap
,built_value
deserializeWith
JSON String
,了解如何使它们协同工作。
graphql_flutter
来获取数据,然后响应将结果数据显示为LazyCacheMap
。built_value
进行数据模型和数据序列化,但是由于deserializeWith
与JSON String
一起使用。与他们一起工作的最佳方式是什么?
LazyCacheMap
的数据转换为String
并调用deserializeWith
吗?答案 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
包encode
对LazyCacheMap
的响应JSON
,然后执行所需的任何操作。
dart:convert
为我工作。