问题:
如题
出现时机:
只在 ctrl+r 页面初始化和首次进入目标界面会报错,如果是延时触发,则不会报错
定位:
查看源码,在chrome进行源码修改后打印,定位到报错代码段
TypeScript
const documentCloner = new DocumentCloner(context, element, cloneOptions);
const clonedElement = documentCloner.clonedReferenceElement;
if (!clonedElement) {
return Promise.reject(`Unable to find element in cloned iframe`);
}
TypeScript
if (this.referenceElement === node && isHTMLElementNode(clone)) {
this.clonedReferenceElement = clone;
}
打印clone,发现直到ion-route-outlet层,后面的节点没有再遍历了,因此出现报错。而界面如果加载完再调用,则无报错。
根本原因:
暂时没有继续深究,感兴趣的可以继续打印查看。