error(8)
-
Sencha Uncaught TypeError: c is not a constructor
일반적으로 프레임워크가 지정된 클래스의 인스턴스를 확인하거나 생성할 수 없을 때 발생합니다The error "Uncaught TypeError: c is not a constructor" typically occurs when an attempt is made to instantiate a class or object that does not exist or is not correctly defined. In the context of ExtJS, this can happen for various reasons. Here's how to diagnose and resolve the issue:
2024.12.16 -
java 에러
no main manifest attribute, in xxx.jar java -jar xxx.jar 수행시, main 파일을 못 찾아서 문제 발생 https://dongjuppp.tistory.com/87 no main manifest attribute in 에러 no main manifest attribute in 에러는 spring 애플리케이션을 빌드한 결과물로 나온 jar파일에서 처음 호출할 Main 메소드를 찾지 못했다는 에러다. 주로 jar파일을 "java -jar app.jar" 명령어로 실행을 시킬.. dongjuppp.tistory.com org.apache.maven.plugins maven-jar-plugin 3.2.0 true xxx.xxx.xxx Error: Unable to in..
2021.12.26 -
subprocess에서 결과값 받기
결과값과 에러값 받기 cmd = "text2image --list_available_fonts --fontconfig_tmpdir ./work/tmp --fonts_dir c:/Windows/Fonts" print(cmd) proc = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE) output = proc.stdout.readlines() error = proc.stderr.readlines() print(output) print(error) 다른 방법 cmd = "text2image --list_available_fonts --fonts_dir %s --fontconfig_tmpdir ./data/tmp" %f..
2021.03.28 -
tile cannot extend outside image
crop의 값이 잘못들어간 경우 발생\ 잘못들어간 경우, size에 '0'이 존재 image = pil.Image.open(trainedImage.file) output = io.BytesIO() boxImage = image.crop((box.x,box.y,box.width,box.height))(X) print(boxImage.size) boxImage = image.crop((box.x,box.y,box.x+box.width,box.y+box.height))(O) print(boxImage.size) output.close()
2021.02.11 -
Cannot assign "25": "Box.image" must be a "Image" instance.
Model의 ForeignKey는 값이 아닌, 객체를 대입해야 함 self.image = image(X) self.image = Image.objects.get(id=image)(O)
2021.01.31 -
object has no attribute '_state'
Model 생성자 __init__ 오버로딩 에러 생성자 오버로딩은 안되는걸로
2021.01.31