본문 바로가기

dart3.3

Flutter 보간된 문자열을 어떻게 포맷하는지 방법, How to format an interpolated String 질문 다음과 같은 문자열을 형식화해야 합니다: "Send %d seconds ago", "Harry likes %s", "I think %1$s likes %2$s". 이러한 형식화는 Android에서 구현할 수 있지만, Dart for Flutter에서는 어떻게 구현해야 할지 모릅니다. 답변 Dart는 문자열 보간을 지원합니다. var seconds = 5; print("Send $seconds seconds ago"); var harryLikes = 'Silvia'; var otherName = 'Erik'; var otherLikes = 'Chess'; print("Harry like $harryLikes"); print("I think $otherName like $otherLikes"); 또한 .. 2023. 9. 29.
Flutter 바디에 Json을 포함한 HTTP POST - 플러터/다트, HTTP POST with Json on Body - Flutter/Dart 질문 다음은 API에 대한 요청을 작성하는 코드입니다: import 'dart:async'; import 'dart:convert'; import 'dart:io'; import 'package:http/http.dart' as http; Future postRequest () async { var url ='https://pae.ipportalegre.pt/testes2/wsjson/api/app/ws-authenticate'; var body = jsonEncode({ 'data': { 'apikey': '12345678901234567890' } }); print("Body: " + body); http.post(url, headers: {"Content-Type": "application/json.. 2023. 7. 19.
Flutter 나쁜 상태: "application/json" 콘텐트 유형을 가진 Request의 본문 필드를 설정할 수 없습니다., Bad state: Cannot set the body fields of a Request with content-type "application/json" 질문 Map headers = {'Content-Type':'application/json','authorization':'Basic c3R1ZHlkb3RlOnN0dWR5ZG90ZTEyMw=='}; var response = await post(Urls.getToken, headers: headers, body: {"grant_type":"password","username":"******","password":"*****","scope":"offline_access"}, ); 이를 실행할 때 데이터를 받을 수 없으며 발생하는 오류는 다음과 같습니다. Bad state: "application/json" 타입의 content-type을 가진 요청의 body 필드를 설정할 수 없습니다. 답변 본문을 jso.. 2023. 7. 12.