在 flutter 中没有得到正确的 api 响应

Not getting proper api resonse in flutter

当我在 json.encode 中传递变量中的值时出现以下问题没有得到例外的响应,但是我在传递值时没有变量得到正确的响应我尝试使用 map 和不同的 headers无法得到确切的问题。

  1. 不工作

    String getvalue = “response-value”; var _body = json.encode({"context": getvalue});

    var res = await http.post(link, headers: { "Content-Type": "application/json", }, body: _body );

  2. 工作

    var _body = json.encode({ “响应值”: “response-value” });

    var res = await http.post(link, headers: { "Content-Type": "application/json", }, body: _body );

已解决,后端有问题api已解决知道。