我想用我自己的<keyvaluepair>值连接rest api

时间:2019-03-07 09:20:02

标签: android rest dart flutter

我可以在flutter上连接rest api,但是我想用我自己的值连接rest api。这是我的代码:

.X

我如何在getData()函数上使用formContent?我想将http://localhost:7070/api/v2/token与表单内容相关联,并且ı将获得令牌。

1 个答案:

答案 0 :(得分:0)

要使用http请求发布数据,您必须使用发布命令

var postBody= json.encode(formContent);
var resopnse = await http.post(
         Uri.encodeFull("http://localhost:7070/api/v2/token"), 
         body: postBody, 
         headers: {"Accept": "application/json"});

要导入json编码器,请导入dart:convert包

import 'dart:convert';