본문 바로가기

error46

Python ValueError: 10진수 기반으로 int()에 대한 잘못된 리터럴입니다: '', ValueError: invalid literal for int() with base 10: '' 질문 나는 내 코드로부터 다음과 같은 오류를 받았다: ValueError: invalid literal for int() with base 10: ''. 이게 무슨 뜻인가요? 왜 발생하고 어떻게 고칠 수 있을까요? 답변 에러 메시지는 int에 제공된 문자열을 정수로 변환할 수 없다는 것을 의미합니다. : 뒤에 있는 부분은 제공된 문자열을 보여줍니다. 질문에서 설명된 경우, 입력은 빈 문자열로 작성되었습니다. ''입니다. 여기에 또 다른 예제가 있습니다 - 부동 소수점 값을 나타내는 문자열은 int로 직접 변환할 수 없습니다: >>> int('55063.000000') Traceback (most recent call last): File "", line 1, in ValueError: invalid li.. 2023. 7. 24.
Flutter 맥에서 플러터에서 "error running pod install"을 어떻게 해결할 수 있나요?, How to solve "error running pod install" in flutter on mac? 질문 내 iPhone에서 프로젝트를 실행하려고 할 때 오류가 발생했습니다. 기본 플러터 예제는 iPhone에서 작동하지만 내 프로젝트를 사용할 때 이 오류가 발생합니다. 답변 플러터 프로젝트에서도이 문제에 직면했습니다. 플러터와 코코아 팟을 최신 버전으로 업데이트하여 해결되었습니다. 해결 방법:- flutter clean rm -Rf ios/Pods rm -Rf ios/.symlinks rm -Rf ios/Flutter/Flutter.framework rm -Rf ios/Flutter/Flutter.podspec flutter pub get cd ios pod install arch -x86_64 pod install //(M1 맥에서는 => arch -x86_64 pod install 사용) cd .... 2023. 7. 19.
Flutter HTTPClient get() 요청에 대한 타임아웃 설정, Set timeout for HTTPClient get() request 질문 이 방법은 간단한 HTTP 요청을 제출하고 성공 또는 오류 콜백을 호출합니다: void _getSimpleReply( String command, callback, errorCallback ) async { try { HttpClientRequest request = await _myClient.get( _serverIPAddress, _serverPort, '/' ); HttpClientResponse response = await request.close(); response.transform( utf8.decoder ).listen( (onData) { callback( onData ); } ); } on SocketException catch( e ) { errorCallback( e.toS.. 2023. 7. 19.
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.