我可以在flutter上连接rest api,但是我想用我自己的值连接rest api。这是我的代码:
.X
我如何在getData()函数上使用formContent?我想将http://localhost:7070/api/v2/token与表单内容相关联,并且ı将获得令牌。
答案 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';