“Flutter wyślij ciało JSON do API” Kod odpowiedzi

Flutter wyślij ciało JSON do API

Future<http.Response> createFunction(String str) {
  return http.post(
    Uri.parse('https://your_domain.com/path'),
    headers: <String, String>{
      'Content-Type': 'application/json; charset=UTF-8',
    },
    body: jsonEncode(<String, String>{
      'str': str,
    }),
  );
}
Snippets

Wyślij ciało json http, trzepotanie

final queryParameters = {
  'name': 'Bob',
  'age': '87',
};
final uri = Uri.http('www.example.com', '/path', queryParameters);
final headers = {HttpHeaders.contentTypeHeader: 'application/json'};
final response = await http.get(uri, headers: headers);
Agreeable Antelope

Odpowiedzi podobne do “Flutter wyślij ciało JSON do API”

Pytania podobne do “Flutter wyślij ciało JSON do API”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu