Flutter:字符串编码不正确-Flutter中的toString将“转换为

时间:2018-09-02 09:08:00

标签: dart flutter

我正在使用以下报价

return  await client.get(hostname + "/portfolio/" +email+"/").
    then((response){
        if (response.statusCode == 200) {
            var body = response.body.toString();
            return body; //The body contains text that has quotes in it
        }
        else {
            return "";
        }
    });

正文中带有引号的文本。例如,有这样的

you"ll ever find

但是body变量里面有这个

youâll ever find

注意引号已转换为。知道我该如何解决吗?

0 个答案:

没有答案