TypeError:无法读取属性' ownerDocument'为null {stack:(...),message:"无法读取属性' ownerDocument' of null"}
升级dojo后,在以下行中遇到上述错误。有谁知道我如何解决它,或者我应该将其报告为错误?
require([..., "dojo/dom-construct"], function(..., domConstruct) {
//some code
domConstruct.place(legPic, curLayer.id + '_chkBox_' + curLegLyr.layerId, "after");
});
答案 0 :(得分:0)
curLayer.id + '_chkBox_' + curLegLyr.layerId
可能会在您domConstruct.place
来电时引用您文档中实际不存在的ID。
(错误对应于Dojo源中的this line。)