我如何对嵌套在flutter中的json发出发布请求?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我如何对嵌套在flutter中的json发出发布请求?相关的知识,希望对你有一定的参考价值。
我将在一个简单的json中发出普通请求,但是在编写时,我不会发出该请求。如果有人可以帮助我解决此json和模型的发布请求。
[Json:
"nit":12335667,
"name": "it",
"city":
"id": 1,
"name": "New York",
"code": 132
答案
如果您正在寻找要发布的帖子,类似的内容仍然可以使用,但是我建议使用此article。
class MyPostRequest extends StatelessWidget
final location =
"nit": 12335667,
"name": "it",
"city": "id": 1, "name": "New York", "code": 132
;
@override
Widget build(BuildContext context)
return FlatButton(
child: Text('Make a Post Request'),
onPressed: () async
var response = await http.post(
'https://www.example.com',
body: location,
);
,
);
以上是关于我如何对嵌套在flutter中的json发出发布请求?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Flutter 中使用 JSON 正文发出 http DELETE 请求?