将不带引号的JSON转换为Map

时间:2019-04-18 08:50:28

标签: json dart

我以JSON格式从服务器获取消息,

{test:test, 2:test, 4:5}

当我尝试将其添加到Map中时:

    var s = new Map<dynamic, dynamic>();
    s = ResponseFromServer;

我尝试添加json.decode,但仍然出现相同的错误:

FormatException: SyntaxError: Unexpected token t in JSON at position 1

我知道需要使用引号,但是如何简单地添加引号或读取值?

0 个答案:

没有答案