如何使用Flutter以最简单的方式调用具有登录名(如用户名和密码)的登录api,请让我知道在Flutter中调用Post api的数量。
答案 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'));