에러(8)
-
Sencha Trouble Shooting
WAI-ARIA compatibility warnings can be suppressed by adding the following to application startup code: # 소스 Ext.define('Home.view.main.Main', { extend: 'Ext.container.Container', xtype: 'main', requires: [ ], title: 'Home', layout: 'border', items: [{ region: 'north', height: 50, bodyStyle: 'background-color:black', html: ' Home' }] }); 첫번째 item이 xtype이 지정이 안되어 있기 때문에 'panel'이 적용됨 panel에 'title'..
2024.03.30 -
termux 에러
unable to locate package https://stackoverflow.com/questions/65210662/how-to-fix-e-unable-to-locate-package-python-on-termux How to fix "E: Unable to locate package python" on termux? I am installing python on termux but I am getting this error: $ pkg install python Checking availability of current mirror: ok Reading package lists... Done Building dependency tree... Done E: Unab... stackoverflow..
2022.08.10 -
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 -
Django Admin 에러
데이터 타입이 IntergerField인데, 값을 강제로 ''으로 셋팅하여 생긴 문제 값을 null로 셋팅하면 해결됨 Django Version:3.1.6 Exception Type:IndexError Exception Value: string index out of range Exception Location:C:\Users\baris\AppData\Local\Programs\Python\Python39\lib\site-packages\django\utils\numberformat.py, line 57, in format
2021.02.21 -
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