Error(5)
-
Unable to assign QQuickRootItem to double
Qt Quick 프로그래밍을 하던 중에 이런 오류가 나왔다. 찾아보니 Rectangle의 width와 height 값을 Window에서 parent로 값을 가져오려고 해서 나오는 오류였다. Window { width: 640 height: 480 visible: true Rectangle { id: rect width: parent height: parent } } 해결 방법은 여러가지이다. anchors.fill : parent 를 대신 사용한다. window에 id 값을 지정해서 id.width 값과 id. height 값을 받는다. 참고 https://stackoverflow.com/questions/30121552/qml-unable-to-assign-qquickitem-to-qquickancho..
2021.07.31 -
QQuickView does not support using a window as a root item.
QQuickView does not support using a window as a root item. If you wish to create your root window from QML, consider using QQmlApplicationEngine instead 예제를 풀던 도중에 이런 오류가 나왔다. 방법1 https://forum.qt.io/topic/66300/qquickview-problems 여기 싸이트에서는 해석 그대로 QQuickView는 Window를 root 객체로 사용을 못한다고 한다. 그래서 Window를 Item으로 바꿨다. 하지만 오류는 뜨지 않았지만 결과도 안 보였다. 그래서 viewer.show(); (viewer는 QQuickView객체이름이다) 코드를 추가했다. ..
2021.07.24 -
Error while building/deploying project
Qt 예제를 실행하려는데 error 가 났다. 찾아보니 이유는 경로 중에 한글이름이 있기 때문이다. 그래서 폴더명을 영어로 바꿨다. 참고 - https://kldp.org/node/144254 QT 프로젝트 실행에 관한 질문입니다. | KLDP 과거 인턴중에 만들었던 프로그램을 실행시켜보고 싶은데요.. 그때 작업 컴파일러가 mingw였던 것으로 기억합니다. 그런데 돌아가지가 않네요.. msvc2010도 안되고 mingw로도 빌드가 안됩니다.. 에러 kldp.org 다시 build 오류 가 났다. 이미 qt에 config된 파일이라 경로가 저장되어서 바뀐 경로를 못찾는 것이다. .pro.user 파일을 지우고 다시 시작해야한다.
2021.07.22 -
파이참 디버깅 오류 : module 'queue' has no attribute 'Queue'
파이참에서 디버깅을 하려고 하는 데 값자기 오류가 나왔다. module 'queue' has no attribute 'Queue' 구글링해보니 이름을 변경하라고 한다. stackoverflow.com/questions/20892994/attributeerror-module-has-no-attribute-queue AttributeError 'module' has no attribute 'Queue" I am trying to import Queue and I keep getting the following Traceback (most recent call last): File "threading.py", line 2, in import Queue File "/Library/Frameworks/Python..
2021.03.18 -
React 오류 : A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for th..
React 실습 도중에 오류가 나왔다. 이 오류는 구글링해보니 default값을 설정 안해줘서 난 것 같다. 설정하니 잘 작동했다.
2021.03.08