标签: qml
from typing import List, Union tlist: List[Union[str, float]] = [False, int(12)] 编译输出: 错误:属性名称不能以大写字母开头。
from typing import List, Union tlist: List[Union[str, float]] = [False, int(12)]
答案 0 :(得分:1)
QML属性规则与许多JavaScript的属性规则一致,例如,属性名称必须以小写字母开头。 JavaScript reserved words是无效的属性名称。
这是一条规则,您应该习惯于已经习惯了属性的规则...
@#%^&*