使用 dom-construct.place 时的 TypeError(空引用异常)

TypeError (null reference exception) when using dom-construct.place

TypeError: Cannot read property 'ownerDocument' of null {stack: (...), message: "Cannot read property 'ownerDocument' of null"}

升级dojo后在下面一行遇到上述错误。有谁知道我该如何修复它,或者我应该将其报告为错误?

require([..., "dojo/dom-construct"], function(..., domConstruct) {
    //some code
    domConstruct.place(legPic, curLayer.id + '_chkBox_' + curLegLyr.layerId, "after");
});

curLayer.id + '_chkBox_' + curLegLyr.layerId 可能引用的 ID 在您 domConstruct.place 调用时实际上并不存在于您的文档中。

(错误对应Dojo源码中的this line