我有一个MapPolyline列表,我尝试将动态添加的对象保存到此列表中。它有效但当我试图获取列表中的对象时,它不起作用。它说TypeError: Cannot read property of undefined
这是我的代码
property list<MapPolyline> lines
var component;
var sprite;
component = Qt.createComponent("lineStringComponent.qml");
sprite = component.createObject(window,{"id": "button1"});
sprite.addCoordinate(QtPositioning.coordinate(currentgcppoint.lat, currentgcppoint.lon));
sprite.addCoordinate(gcppoint);
map.addMapItem(sprite)
lines.push(sprite)
gcps.push(currentgcppoint)
console.log("Added:", lines[1])
console.log("width:", lines[1].line.width)
以下是lineStringComponent.qml
import QtQuick 2.2
import QtLocation 5.6
import QtPositioning 5.6
MapPolyline {
id:polyline
line.width: 3
line.color: Qt.rgba(Math.random(),Math.random(),Math.random())
}
控制台输出为:
Added: undefined
TypeError: Cannot read property 'line' of undefined
尝试创建新对象时似乎有延迟。我们怎样才能克服这种拖延?
答案 0 :(得分:1)
如果我正确阅读了您的代码,您只需将 1 元素添加到coldict = {Headers[i+4]: ('b'+ str(32-i)) for i in range(24)}
df = df.rename(columns = coldict)
,然后尝试使用lines
检索lines
的第二个元素。这显然是line[1]
。
尝试使用undefined
访问lines
的第一个元素
JS数组的索引以line[0]
开头(与大多数语言一样)。
如果对象创建会有延迟,那么你不能改变它的任何属性(0
)