Tutorial2 Flutter 아규먼트 타입 'String'은(는) 파라미터 타입 'Uri'에 할당할 수 없습니다., The argument type 'String' can't be assigned to the parameter type 'Uri' 질문 나는 플러그인 HTTP를 사용하여 HTTP POST 요청을 만들려고 하지만 제목의 오류가 발생합니다. 다른 애플리케이션에서는 이 작업이 완벽하게 작동하기 때문에 이것의 원인을 아시는 분은 계신가요? await http.post(Uri.encodeFull("https://api.instagram.com/oauth/access_token"), body: { "client_id": clientID, "redirect_uri": redirectUri, "client_secret": appSecret, "code": authorizationCode, "grant_type": "authorization_code" }); 답변 컴파일 타임의 타입 안정성을 향상시키기 위해, package:http 0.13.0에서.. 2023. 7. 17. Python 파이썬에서 문자열을 소문자로 변환하는 방법은 무엇인가요?, How do I lowercase a string in Python? 질문 문자열을 소문자로 변환하는 방법이 있나요? "Kilometers" → "kilometers" 반대로 대문자로 바꾸는 방법은 여기를 참조하세요. 답변 str.lower()를 사용하세요: "Kilometer".lower() 2023. 5. 7. 이전 1 다음