“如何使用Flutter最简单的方式使用登录凭据(如用户名和密码)调用post api”

时间:2018-10-11 09:46:24

标签: flutter

如何使用Flutter以最简单的方式调用具有登录名(如用户名和密码)的登录api,请让我知道在Flutter中调用Post api的数量。

1 个答案:

答案 0 :(得分:0)

通过使用以下方法,您可以在标头或正文中发送数据。

new http.Client()
.post(url, headers: {'Content-type': 'application/json','username':'****','password':'****'},
  body: JSON.encoder.convert({'username':'****','password':'****'}))
  .then((http.Response r) => r.body)
  .whenComplete(() => print('completed'));