누락된 속성
이 경고 카테고리의 철자는 [missing-property]
입니다.
존재하지 않는 기본 속성에 할당할 수 없습니다.
무슨 일이 일어났나요?
존재하지 않는 기본 속성에 개체를 할당했습니다.
이것이 왜 나쁜가요?
QML 엔진이 런타임에 이 개체를 할당할 수 없습니다.
예제
이 경고를 해결하려면 바인딩하려는 속성을 지정하거나 해당 유형의 작성자인 경우 속성을 기본값으로 표시하세요:
import QtQuick Item { component MyType: QtObject { property Item myItem; } MyType { myItem: Item {} } component AlternativeMyType: QtObject { default property Item myItem; } AlternativeMyType { Item {} // bound to myItem via default property } }
속성이 존재하지 않습니다.
무슨 일이 있었나요?
존재하지 않는 프로퍼티에 표현식을 할당했습니다.
이것이 왜 나쁜가요?
QML 엔진이 런타임에 이 표현식을 할당할 수 없기 때문입니다.
예제
이 경고를 해결하려면 바인딩을 제거하거나 가능한 오타를 수정하세요:
유형에서 멤버를 찾을 수 없음
무슨 일이 있었나요?
QML 도구에서 찾을 수 없는 필드 멤버 표현식의 멤버에 액세스했습니다.
필드 멤버 표현식은 someId.someProperty
형식의 표현식입니다.
왜 이런 문제가 발생하나요?
QML 도구가 이 멤버를 찾을 수 없으며 QML 엔진도 찾을 수 없을 것입니다.
예제
이 경고를 해결하려면 바인딩을 제거하거나 가능한 오타를 수정하세요:
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.